| org.netbeans.modules.debugger.importd.ImportDebuggerInfo
ImportDebuggerInfo | public class ImportDebuggerInfo extends AbstractDebuggerInfo (Code) | | Contains information about a class to debug.
Consists of these pieces of information:
- the class to run
- parameters for its main method
- a class name to stop execution in, if desired
Uses Import debugger.
author: Jan Jancura |
Constructor Summary | |
public | ImportDebuggerInfo(String className, String[] argv, String stopClassName) Construct a new DebuggerInfo with the class to run and its parameters specified. |
Method Summary | |
public DebuggerImpl | getDebuggerImpl() Return type of debugger which should be used to debug this DebuggerInfo. | public String | getLocationName() Return display name of location where this process will run. | public String | getProcessName() Return display name of debugged process. |
ImportDebuggerInfo | public ImportDebuggerInfo(String className, String[] argv, String stopClassName)(Code) | | Construct a new DebuggerInfo with the class to run and its parameters specified.
Sets class to stop in to be the class to run.
Parameters: className - name of debugged class Parameters: argv - command-line arguments used for debugging this class; may be empty but not null |
getDebuggerImpl | public DebuggerImpl getDebuggerImpl()(Code) | | Return type of debugger which should be used to debug this DebuggerInfo.
type of debugger which should be used to debug this DebuggerInfo |
getLocationName | public String getLocationName()(Code) | | Return display name of location where this process will run.
display name of location where this process will run |
getProcessName | public String getProcessName()(Code) | | Return display name of debugged process.
display name of debugged process |
|
|