Uses of Class
edu.rice.cs.drjava.config.KeyStrokeOption

Packages that use KeyStrokeOption
edu.rice.cs.drjava.config This package contains the code that allows for dynamically modifying the configuration options in DrJava. 
edu.rice.cs.drjava.ui.config Contains the GUI code for displaying and modifying configuration options. 
 

Uses of KeyStrokeOption in edu.rice.cs.drjava.config
 

Fields in edu.rice.cs.drjava.config declared as KeyStrokeOption
static KeyStrokeOption OptionConstants.KEY_NEW_FILE
          The key binding for creating a new file
static KeyStrokeOption OptionConstants.KEY_OPEN_FILE
          The key binding for opening a file
static KeyStrokeOption OptionConstants.KEY_SAVE_FILE
          The key binding for saving a file
static KeyStrokeOption OptionConstants.KEY_SAVE_FILE_AS
          The key binding for saving a file as
static KeyStrokeOption OptionConstants.KEY_CLOSE_FILE
          The key binding for closing a file
static KeyStrokeOption OptionConstants.KEY_PRINT_PREVIEW
          The key binding for showing the print preview
static KeyStrokeOption OptionConstants.KEY_PRINT
          The key binding for printing a file
static KeyStrokeOption OptionConstants.KEY_QUIT
          The key binding for quitting
static KeyStrokeOption OptionConstants.KEY_UNDO
          The key binding for undo-ing
static KeyStrokeOption OptionConstants.KEY_REDO
          The key binding for redo-ing
static KeyStrokeOption OptionConstants.KEY_CUT
          The key binding for cutting
static KeyStrokeOption OptionConstants.KEY_COPY
          The key binding for copying
static KeyStrokeOption OptionConstants.KEY_PASTE
          The key binding for pasting
static KeyStrokeOption OptionConstants.KEY_SELECT_ALL
          The key binding for selecting all text
static KeyStrokeOption OptionConstants.KEY_FIND_NEXT
          The key binding for find and replace
static KeyStrokeOption OptionConstants.KEY_FIND_REPLACE
          The key binding for find and replace
static KeyStrokeOption OptionConstants.KEY_GOTO_LINE
          The key binding for goto line
static KeyStrokeOption OptionConstants.KEY_PREVIOUS_DOCUMENT
          The key binding for selecting previous document
static KeyStrokeOption OptionConstants.KEY_NEXT_DOCUMENT
          The key binding for selecting next document
static KeyStrokeOption OptionConstants.KEY_COMPILE
          The key binding for compiling current document
static KeyStrokeOption OptionConstants.KEY_COMPILE_ALL
          The key binding for compiling all
static KeyStrokeOption OptionConstants.KEY_BACKWARD
          The key binding for moving the cursor backwards
static KeyStrokeOption OptionConstants.KEY_BEGIN_DOCUMENT
          The key binding for moving the cursor to the beginning of the document
static KeyStrokeOption OptionConstants.KEY_BEGIN_LINE
          The key binding for moving the cursor to the beginning of the current line
static KeyStrokeOption OptionConstants.KEY_PREVIOUS_WORD
          The key binding for moving the cursor to the beginning of the previous word
static KeyStrokeOption OptionConstants.KEY_DELETE_NEXT
          The key binding for deleting the next character
static KeyStrokeOption OptionConstants.KEY_DELETE_PREVIOUS
          The key binding for deleting the previous character
static KeyStrokeOption OptionConstants.KEY_DOWN
          The key binding for moving the cursor down
static KeyStrokeOption OptionConstants.KEY_UP
          The key binding for moving the cursor up
static KeyStrokeOption OptionConstants.KEY_END_DOCUMENT
          The key binding for moving the cursor to the end of the document
static KeyStrokeOption OptionConstants.KEY_END_LINE
          The key binding for moving the cursor to the end of the current line
static KeyStrokeOption OptionConstants.KEY_NEXT_WORD
          The key binding for moving the cursor to the beginning of the next word
static KeyStrokeOption OptionConstants.KEY_FORWARD
          The key binding for moving the cursor forwards
static KeyStrokeOption OptionConstants.KEY_PAGE_DOWN
          The key binding for page down
static KeyStrokeOption OptionConstants.KEY_PAGE_UP
          The key binding for page up
static KeyStrokeOption OptionConstants.KEY_CUT_LINE
          The key binding for cutting a line
static KeyStrokeOption OptionConstants.KEY_DEBUG_MODE_TOGGLE
          The key binding for toggling debug mode
static KeyStrokeOption OptionConstants.KEY_DEBUG_RESUME
          The key binding for resuming the debugger
static KeyStrokeOption OptionConstants.KEY_DEBUG_STEP_INTO
          The key binding for stepping into in the debugger
static KeyStrokeOption OptionConstants.KEY_DEBUG_STEP_OVER
          The key binding for stepping over in the debugger
static KeyStrokeOption OptionConstants.KEY_DEBUG_STEP_OUT
          The key binding for stepping out in the debugger
static KeyStrokeOption OptionConstants.KEY_DEBUG_BREAKPOINT_TOGGLE
          The key binding for toggling a breakpoint
 

Uses of KeyStrokeOption in edu.rice.cs.drjava.ui.config
 

Constructors in edu.rice.cs.drjava.ui.config with parameters of type KeyStrokeOption
KeyStrokeOptionComponent(KeyStrokeOption opt, String text, Frame parent)