org.openide.debugger
Class DebuggerInfo
java.lang.Object
|
+--org.openide.execution.ExecInfo
|
+--org.openide.debugger.DebuggerInfo
- public class DebuggerInfo
- extends ExecInfo
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
Constructor Summary |
DebuggerInfo(String className,
String[] argv)
Construct a new DebuggerInfo with the class to run and its parameters specified. |
DebuggerInfo(String className,
String[] argv,
String stopClassName)
Construct a new DebuggerInfo with the class to run, parameters, and a class to stop at. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DebuggerInfo
public DebuggerInfo(String className,
String[] argv)
- 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 classargv
- command-line arguments used for debugging this class; may be empty but not null
DebuggerInfo
public DebuggerInfo(String className,
String[] argv,
String stopClassName)
- Construct a new
DebuggerInfo
with the class to run, parameters, and a class to stop at.
- Parameters:
className
- name of debugged classargv
- command-line arguments used for debugging this class; may be empty but not null
stopClassName
- name of class to stop in (may be null
)
getStopClassName
public String getStopClassName()
- Get the class to stop execution in.
- Returns:
- the class name or
null
Built on December 12 2001. | Portions Copyright 1997-2001 Sun Microsystems, Inc. All rights reserved.