Package org.eclipse.wst.xsl.debugger


org.eclipse.wst.xsl.debugger
Class DebugConstants



public class DebugConstants
extends java.lang.Object
Constants used by the debugger.

Note that class is loaded both on the Eclipse classpath and the launched transformation process, such that they can use exactly the same constants for communication.


Field Summary

public static java.lang.StringREQUEST_ADD_BREAKPOINT
     The constant used to signify addition of a breakpoint.
public static java.lang.StringREQUEST_REMOVE_BREAKPOINT
     The constant used to signify removal of a breakpoint.
public static java.lang.StringREQUEST_RESUME
     The constant used to signify resume.
public static java.lang.StringREQUEST_STACK
     The constant used to request the stack.
public static java.lang.StringREQUEST_START
     The constant used to notify the debugger to start.
public static java.lang.StringREQUEST_STEP_INTO
     The constant used to signify step into.
public static java.lang.StringREQUEST_STEP_OVER
     The constant used to signify step over.
public static java.lang.StringREQUEST_STEP_RETURN
     The constant used to signify step return.
public static java.lang.StringREQUEST_SUSPEND
     The constant used to signify suspension.
public static java.lang.StringREQUEST_VALUE
     The constant used to request a variable value.
public static java.lang.StringREQUEST_VARIABLE
     The constant used to request a variable.

Constructor Summary

DebugConstants()

Method Summary


Field Detail

REQUEST_ADD_BREAKPOINT

public static java.lang.String REQUEST_ADD_BREAKPOINT

The constant used to signify addition of a breakpoint.

REQUEST_REMOVE_BREAKPOINT

public static java.lang.String REQUEST_REMOVE_BREAKPOINT

The constant used to signify removal of a breakpoint.

REQUEST_RESUME

public static java.lang.String REQUEST_RESUME

The constant used to signify resume.

REQUEST_STACK

public static java.lang.String REQUEST_STACK

The constant used to request the stack.

REQUEST_START

public static java.lang.String REQUEST_START

The constant used to notify the debugger to start.

REQUEST_STEP_INTO

public static java.lang.String REQUEST_STEP_INTO

The constant used to signify step into.

REQUEST_STEP_OVER

public static java.lang.String REQUEST_STEP_OVER

The constant used to signify step over.

REQUEST_STEP_RETURN

public static java.lang.String REQUEST_STEP_RETURN

The constant used to signify step return.

REQUEST_SUSPEND

public static java.lang.String REQUEST_SUSPEND

The constant used to signify suspension.

REQUEST_VALUE

public static java.lang.String REQUEST_VALUE

The constant used to request a variable value.

REQUEST_VARIABLE

public static java.lang.String REQUEST_VARIABLE

The constant used to request a variable.

Constructor Detail

DebugConstants

public DebugConstants()