| Package | org.aswing |
| Interface | public interface KeyType |
| Implementors | KeySequence, KeyStroke |
For example "C" and [67] mean the C key on the key board. "Ctrl+C" and [17, 67] mean the first Ctrl and then C keys.
Thanks Romain for his Fever{
See also
| Method | Defined by | ||
|---|---|---|---|
|
getCodeSequence():Array
Returns the key code sequence.
| KeyType | ||
|
getDescription():String
Returns the string that represent the key sequence.
| KeyType | ||
| getCodeSequence | () | method |
public function getCodeSequence():ArrayReturns the key code sequence. Same code sequence be track as same key definition.
ReturnsArray — an array(uint[]) that contains the key codes sequence
|
| getDescription | () | method |
public function getDescription():StringReturns the string that represent the key sequence.
ReturnsString — string that represent the key sequence.
|