IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
LauncherHelperAccessor.cs
Go to the documentation of this file.
1using System;
2
4{
5
6#if FIRST_PASS == false && EXPORTER == false && IMPORTER == false
7
11 internal sealed class LauncherHelperAccessor : Accessor<object>
12 {
13
14 MethodAccessor<Func<bool, int, string, object>> checkAndLoadMain;
15
20 public LauncherHelperAccessor(AccessorTypeResolver resolver) :
21 base(resolver, "sun.launcher.LauncherHelper")
22 {
23
24 }
25
33 public object InvokeCheckAndLoadMain(bool printToStderr, int mode, string what) => GetMethod(ref checkAndLoadMain, nameof(checkAndLoadMain), Resolve("java.lang.Class"), typeof(bool), typeof(int), typeof(string)).Invoker(printToStderr, mode, what);
34
35 }
36
37#endif
38
39}