com.evelopers.unimod.debug.protocol
Class CommandMessage

java.lang.Object
  extended bycom.evelopers.unimod.debug.protocol.Message
      extended bycom.evelopers.unimod.debug.protocol.CommandMessage
All Implemented Interfaces:
java.io.Serializable

public class CommandMessage
extends Message

Possible commands: set breakpoints, remove breakpoints, make step, resume

See Also:
Serialized Form

Field Summary
static int REMOVE_BREAKPOINTS
           
static int RESUME
           
static int SET_BREAKPOINTS
           
static int STEP
           
 
Method Summary
static CommandMessage createRemoveBreakpoints(Position[] breakpoints)
           
static CommandMessage createResume(ThreadInfo thread)
           
static CommandMessage createSetBreakpoints(Position[] breakpoints)
           
static CommandMessage createStep(ThreadInfo thread)
           
 Position[] getBreapoints()
           
 
Methods inherited from class com.evelopers.unimod.debug.protocol.Message
getThreadInfo, getType
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SET_BREAKPOINTS

public static final int SET_BREAKPOINTS
See Also:
Constant Field Values

REMOVE_BREAKPOINTS

public static final int REMOVE_BREAKPOINTS
See Also:
Constant Field Values

STEP

public static final int STEP
See Also:
Constant Field Values

RESUME

public static final int RESUME
See Also:
Constant Field Values
Method Detail

getBreapoints

public Position[] getBreapoints()

createSetBreakpoints

public static final CommandMessage createSetBreakpoints(Position[] breakpoints)

createRemoveBreakpoints

public static final CommandMessage createRemoveBreakpoints(Position[] breakpoints)

createStep

public static final CommandMessage createStep(ThreadInfo thread)

createResume

public static final CommandMessage createResume(ThreadInfo thread)