IKVM11
11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IkvmImporterResourceItem.cs
Go to the documentation of this file.
1
using
System
;
2
using
System.Collections.Generic;
3
using
System.Text
;
4
5
namespace
IKVM.Tools.Runner.Importer
6
{
7
11
public
class
IkvmImporterResourceItem
12
{
13
19
public
IkvmImporterResourceItem
(
string
filePath,
string
resourcePath)
20
{
21
if
(
string
.IsNullOrEmpty(filePath))
22
throw
new
ArgumentException($
"'{nameof(filePath)}' cannot be null or empty."
, nameof(filePath));
23
if
(
string
.IsNullOrEmpty(resourcePath))
24
throw
new
ArgumentException($
"'{nameof(resourcePath)}' cannot be null or empty."
, nameof(resourcePath));
25
26
FilePath
= filePath;
27
ResourcePath
= resourcePath;
28
}
29
33
public
string
FilePath
{
get
;
set
; }
34
38
public
string
ResourcePath
{
get
;
set
; }
39
40
}
41
42
}
IKVM.Tools.Runner.Importer.IkvmImporterResourceItem
Describes a resource option.
Definition
IkvmImporterResourceItem.cs:12
IKVM.Tools.Runner.Importer.IkvmImporterResourceItem.FilePath
string FilePath
Path to the source file.
Definition
IkvmImporterResourceItem.cs:33
IKVM.Tools.Runner.Importer.IkvmImporterResourceItem.IkvmImporterResourceItem
IkvmImporterResourceItem(string filePath, string resourcePath)
Initializes a new instance.
Definition
IkvmImporterResourceItem.cs:19
IKVM.Tools.Runner.Importer.IkvmImporterResourceItem.ResourcePath
string ResourcePath
Path to the resource within the Java environment.
Definition
IkvmImporterResourceItem.cs:38
IKVM.Tools.Runner.Importer
Definition
IkvmImporterDebugMode.cs:2
System.Text
Definition
EncodingExtensions.cs:5
System
Definition
HexConverter.cs:9
src
IKVM.Tools.Runner
Importer
IkvmImporterResourceItem.cs
Generated by
1.12.0