This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The <code>InputHandler</code> is implementing the <code>KeyListener</code> to | |
* be the keyboard manager. It is mapping some <code>keyEvent</code> code to | |
* possible <code>ACTIONS</code>. | |
* <ul> | |
* <li>the <code>keyMapping</code> are the map containing the mapping between | |
* some KeyCode to <code>ACTIONS</code> values,</li> | |
* <li>the internal <code>keys</code> map contains all keys status as boolean | |
* values,</li> | |
* <li>the <code>actions</code> contains all Action events produced.</li> |
OlderNewer