Changeset 730


Ignore:
Timestamp:
08/31/12 11:49:37 (12 years ago)
Author:
pharms
Message:
  • corrected java doc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/ui/commands/CMDgenerateTaskTree.java

    r727 r730  
    1616/** 
    1717 * <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 * This command generates a task tree based on the provided sequences. It uses the 
     19 * {@link TaskTreeManager} for this purpose. Please consult the documentation of the task tree 
     20 * manager for more details. 
    3921 * </p> 
    4022 *  
Note: See TracChangeset for help on using the changeset viewer.