|
JavaScript Development Tools Release 3.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.eclipse.wst.jsdt.launching.ExecutionArguments
public class ExecutionArguments
The execution arguments for running a JavaScript VM. The execution arguments are separated into two parts: arguments to the VM itself, and arguments to the JavaScript main program. This class provides convenience methods for parsing a string of arguments into separate components.
Clients may instantiate this class; it is not intended to be subclassed.
Provisional API: This class/interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.
Constructor Summary | |
---|---|
ExecutionArguments(String vmArgs,
String programArgs)
Creates a new execution arguments object. |
Method Summary | |
---|---|
String |
getProgramArguments()
Returns the program arguments as one string. |
String[] |
getProgramArgumentsArray()
Returns the program arguments as an array of individual arguments. |
String |
getVMArguments()
Returns the VM arguments as one string. |
String[] |
getVMArgumentsArray()
Returns the VM arguments as an array of individual arguments. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ExecutionArguments(String vmArgs, String programArgs)
vmArgs
- command line argument string passed to the VMprogramArgs
- command line argument string passed to the programMethod Detail |
---|
public String getVMArguments()
public String getProgramArguments()
public String[] getVMArgumentsArray()
public String[] getProgramArgumentsArray()
|
JavaScript Development Tools Release 3.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |