IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
ExportOptions.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2
4{
5
10 {
11
15 public string Output { get; set; }
16
20 public List<string> References { get; } = [];
21
25 public List<string> Libraries { get; } = [];
26
30 public List<string> Namespaces { get; } = [];
31
35 public bool Shared { get; set; }
36
40 public bool NoStdLib { get; set; }
41
45 public bool Forwarders { get; set; }
46
50 public bool IncludeParameterNames { get; set; }
51
55 public bool IncludeNonPublicTypes { get; set; }
56
60 public bool IncludeNonPublicInterfaces { get; set; }
61
65 public bool IncludeNonPublicMembers { get; set; }
66
70 public bool SerialVersionUID { get; set; }
71
75 public bool ContinueOnError { get; set; }
76
80 public bool Bootstrap { get; set; }
81
85 public string Assembly { get; set; }
86
87 }
88
89}
IKVM.Reflection.Assembly Assembly
Options passed to the exporter.
List< string > Libraries
Path to directories to search for assembly references.
bool Forwarders
Whether to include forwarder types.
bool SerialVersionUID
Whether to export serialVersionUID fields.
List< string > References
Assembly references.
bool ContinueOnError
Whether to continue execution on error.
bool NoStdLib
Whether to include the standard library references.
bool IncludeNonPublicTypes
Whehter to export non-public types.
string Output
Output JAR file.
bool IncludeParameterNames
Whether to export parameter names.
bool Shared
Are we doing a shared export.
bool IncludeNonPublicMembers
Whether to export non-public members.
bool IncludeNonPublicInterfaces
Whether to export non-public interface implementations.
List< string > Namespaces
Set of namespaces to export.
bool Bootstrap
Whether we are to run in bootstrap mode.