java.lang.Object
com.maddyhome.idea.vim.KeyHandler.ActionRunner
- All Implemented Interfaces:
- java.lang.Runnable
- Enclosing class:
- KeyHandler
- static class KeyHandler.ActionRunner
- extends java.lang.Object
- implements java.lang.Runnable
This was used as an experiment to execute actions as a runnable.
|
Method Summary |
void |
run()
This method will be called by whoever wishes to run your class
implementing Runnable. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
editor
private Editor editor
context
private DataContext context
cmd
private com.maddyhome.idea.vim.command.Command cmd
key
private javax.swing.KeyStroke key
KeyHandler.ActionRunner
public KeyHandler.ActionRunner(Editor editor,
DataContext context,
com.maddyhome.idea.vim.command.Command cmd,
javax.swing.KeyStroke key)
run
public void run()
- Description copied from interface:
java.lang.Runnable
- This method will be called by whoever wishes to run your class
implementing Runnable. Note that there are no restrictions on what
you are allowed to do in the run method, except that you cannot
throw a checked exception.
- Specified by:
run in interface java.lang.Runnable