Uses of Interface
com.alee.managers.hotkey.HotkeyRunnable

Packages that use HotkeyRunnable
com.alee.managers.hotkey   
com.alee.utils   
 

Uses of HotkeyRunnable in com.alee.managers.hotkey
 

Classes in com.alee.managers.hotkey that implement HotkeyRunnable
 class ButtonHotkeyRunnable
          User: mgarin Date: 30.11.12 Time: 17:15
 

Fields in com.alee.managers.hotkey declared as HotkeyRunnable
static HotkeyRunnable HotkeyRunnable.NONE
          Simple runnable that doesn't perform any actions.
 

Methods in com.alee.managers.hotkey that return HotkeyRunnable
protected static HotkeyRunnable HotkeyManager.createAction(javax.swing.AbstractButton forComponent)
           
 HotkeyRunnable HotkeyInfo.getAction()
           
 

Methods in com.alee.managers.hotkey with parameters of type HotkeyRunnable
static HotkeyInfo HotkeyManager.registerHotkey(java.awt.Component topComponent, java.awt.Component forComponent, HotkeyData hotkeyData, HotkeyRunnable action)
           
static HotkeyInfo HotkeyManager.registerHotkey(java.awt.Component topComponent, java.awt.Component forComponent, HotkeyData hotkeyData, HotkeyRunnable action, boolean hidden)
           
static HotkeyInfo HotkeyManager.registerHotkey(java.awt.Component topComponent, java.awt.Component forComponent, HotkeyData hotkeyData, HotkeyRunnable action, boolean hidden, TooltipWay tooltipWay)
           
static HotkeyInfo HotkeyManager.registerHotkey(java.awt.Component topComponent, java.awt.Component forComponent, HotkeyData hotkeyData, HotkeyRunnable action, TooltipWay tooltipWay)
           
static HotkeyInfo HotkeyManager.registerHotkey(java.awt.Component forComponent, HotkeyData hotkeyData, HotkeyRunnable action)
           
static HotkeyInfo HotkeyManager.registerHotkey(java.awt.Component forComponent, HotkeyData hotkeyData, HotkeyRunnable action, boolean hidden)
           
static HotkeyInfo HotkeyManager.registerHotkey(HotkeyData hotkeyData, HotkeyRunnable action)
          Hotkey register methods
 HotkeyInfo HotkeyInfo.setAction(HotkeyRunnable action)
           
 

Uses of HotkeyRunnable in com.alee.utils
 

Methods in com.alee.utils with parameters of type HotkeyRunnable
static void SwingUtils.invokeLater(HotkeyRunnable runnable, java.awt.event.KeyEvent e)
          Will invoke the specified action later in EDT in case it is called from non-EDT thread.