com.bluemarsh.jswat.command
Class enableCommand

java.lang.Object
  |
  +--com.bluemarsh.jswat.command.JSwatCommand
        |
        +--com.bluemarsh.jswat.command.stopCommand
              |
              +--com.bluemarsh.jswat.command.enableCommand
Direct Known Subclasses:
disableCommand

public class enableCommand
extends stopCommand

Defines the class that handles the 'enable' command.

Version:
1.0 9/6/99
Author:
Nathan Fiedler

Field Summary
protected  boolean enabledValue
          Set to true to enable breakpoints, false to disable.
 
Fields inherited from class com.bluemarsh.jswat.command.JSwatCommand
logCategory, primitiveTypeNames, swat
 
Constructor Summary
enableCommand()
           
 
Method Summary
 void perform(Session session, com.bluemarsh.util.StringTokenizer args, Log out)
          Perform the 'enable' command.
 
Methods inherited from class com.bluemarsh.jswat.command.stopCommand
printBreakList, printBreakpoint
 
Methods inherited from class com.bluemarsh.jswat.command.JSwatCommand
argumentsMatch, createObject, description, findClassesByPattern, getCommandName, getPromptString, getThreadByID, help, help, missingArgs, receiveInput, resolveOverload
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

enabledValue

protected boolean enabledValue
Set to true to enable breakpoints, false to disable.
Constructor Detail

enableCommand

public enableCommand()
Method Detail

perform

public void perform(Session session,
                    com.bluemarsh.util.StringTokenizer args,
                    Log out)
Perform the 'enable' command.
Overrides:
perform in class stopCommand
Parameters:
session - JSwat session on which to operate.
args - Tokenized string of command arguments.
out - Output to write messages to.