Changeset 717 for trunk/quest-ui-core/src/main/java
- Timestamp:
- 08/30/12 14:10:09 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/ui/commands/CMDdetectTextInputEvents.java
r701 r717 16 16 /** 17 17 * <p> 18 * Command to sort the key interactions in a sequence of events. An example, the sequence 19 * to write the upper case D 20 * <ul> 21 * <li>press shift key</li> 22 * <li>press D key</li> 23 * <li>release shift key</li> 24 * <li>release D key</li> 25 * </ul> 26 * 27 * is transformed to the sequence 28 * 29 * <ul> 30 * <li>press shift key</li> 31 * <li>press D key</li> 32 * <li>release D key</li> 33 * <li>release shift key</li> 34 * </ul> 35 * 36 * in which the first pressed key (shift in this case) is always released last. The same is done 37 * for the alt and the ctrl keys. 38 * 18 * TODO comment 39 19 * </p> 40 20 *
Note: See TracChangeset
for help on using the changeset viewer.