public interface IVirtualMachine
Modifier and Type | Method and Description |
---|---|
void |
addClasspathEntry(IEntry entry)
Adds a new classpath entry the JVM classpath.
|
Collection<IEntry> |
getClasspathEntries()
Returns the classpath entries that will be used to compute the JVM classpath.
|
Map<String,String> |
getProperties()
Returns the properties that will be passed to the JVM and will be available
in the running JVM using
System.getProperties() . |
void |
setProperty(String name,
String value)
Adds a new property that will be passed to the JVM and will be available
in the running JVM using
System.getProperties() . |
Collection<IEntry> getClasspathEntries()
void addClasspathEntry(IEntry entry)
entry
- A classpath entry.FileEntry
,
BundleEntry
Map<String,String> getProperties()
System.getProperties()
.System.getProperties()
.void setProperty(String name, String value)
System.getProperties()
.name
- The property name.value
- The property value. May be null
.© Copyright IBM Corp. 2013. All rights reserved.