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:


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.
 
Method Summary
 String getStopClassName()
          Get the class to stop execution in.
 
Methods inherited from class org.openide.execution.ExecInfo
getArguments, getClassName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

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 class
argv - 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 class
argv - command-line arguments used for debugging this class; may be empty but not null
stopClassName - name of class to stop in (may be null)
Method Detail

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.