Changeset 852 for trunk/quest-core-events/src/main
- Timestamp:
- 10/01/12 13:08:31 (12 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/gui/KeyInteractionCorrector.java
r795 r852 40 40 * @author Steffen Herbold 41 41 */ 42 public class KeyInteraction Sorter {42 public class KeyInteractionCorrector { 43 43 44 44 /** … … 75 75 /** 76 76 * <p> 77 * Constructor. Creates a new {@link KeyInteraction Sorter} with {@link #mode}=77 * Constructor. Creates a new {@link KeyInteractionCorrector} with {@link #mode}= 78 78 * {@link CleanupMode#ADDITION}. 79 79 * </p> 80 80 */ 81 public KeyInteraction Sorter() {81 public KeyInteractionCorrector() { 82 82 this(CleanupMode.ADDITION); 83 83 } … … 85 85 /** 86 86 * <p> 87 * Constructor. Creates a new {@link KeyInteraction Sorter}.87 * Constructor. Creates a new {@link KeyInteractionCorrector}. 88 88 * </p> 89 89 * … … 91 91 * {@link #mode} of the instance 92 92 */ 93 public KeyInteraction Sorter(CleanupMode mode) {93 public KeyInteractionCorrector(CleanupMode mode) { 94 94 this.mode = mode; 95 95 } … … 98 98 * <p> 99 99 * Sorts and cleans up key interactions according to the class specification (@see 100 * {@link KeyInteraction Sorter} class comment).100 * {@link KeyInteractionCorrector} class comment). 101 101 * </p> 102 102 * <p>
Note: See TracChangeset
for help on using the changeset viewer.