rle.core.ui
Interface UiAction

All Superinterfaces:
javax.swing.Action, java.awt.event.ActionListener, java.util.EventListener, PlugIn
All Known Subinterfaces:
ItemUiAction
All Known Implementing Classes:
Drop, Eat, FullScreenToggle, GetItem, GlobalCancel, ItemCommands, ItemCommands.RemoveTable, ItemCommands.SetTable, ItemCommands.ToggleTableVisibility, ItemUiActionBase, Look, Mover, StairCase, TakeOff, Throw, UiActionBase, WarpToLevel, Wear

public interface UiAction
extends javax.swing.Action, PlugIn

Implemented by classes that perform an action in response to a UI event, such as a keypress. In general, any action should NOT run on the event dispatch thread, i.e. should run in a background thread.


Field Summary
 
Fields inherited from interface javax.swing.Action
ACCELERATOR_KEY, ACTION_COMMAND_KEY, DEFAULT, LONG_DESCRIPTION, MNEMONIC_KEY, NAME, SHORT_DESCRIPTION, SMALL_ICON
 
Method Summary
 void doAction()
          Perform an action on the Game Thread.
 java.awt.event.ActionEvent getEvent()
          The AWT/Swing event that triggered this action.
 
Methods inherited from interface javax.swing.Action
addPropertyChangeListener, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
 
Methods inherited from interface java.awt.event.ActionListener
actionPerformed
 
Methods inherited from interface rle.core.vm.PlugIn
config, getContext, paramMap, setConfig, setParameters
 

Method Detail

doAction

void doAction()
Perform an action on the Game Thread.


getEvent

java.awt.event.ActionEvent getEvent()
The AWT/Swing event that triggered this action.