Changeset 1719 for trunk/autoquest-plugin-jfc/src/main/java/de
- Timestamp:
- 09/03/14 15:38:13 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/commands/CMDgenerateJacaretoReplay.java
r1716 r1719 95 95 */ 96 96 public class CMDgenerateJacaretoReplay implements Command { 97 private static final int EVENT_DURATION = 150; 98 97 99 private JFCGUIElement currentFocus; 98 100 private StructureNode structure; … … 238 240 Event event = eventIter.next(); 239 241 242 /* 240 243 System.out.println(event.getType()); 241 244 System.out.println(event.getTarget()); 242 245 System.out.println("---"); 246 */ 243 247 244 248 if (event.getType() instanceof MouseButtonDown) { … … 472 476 "<MouseEvent " 473 477 + "procTime=\"0\" " 474 + "duration=\" 150\" "478 + "duration=\"" + EVENT_DURATION + "\" " 475 479 + "source=\"" + target.getJacaretoHierarchy() + "\" " 476 480 + "class=\"" + target.getSpecification().getType() + "\" " … … 528 532 "<KeyEvent " 529 533 + "procTime=\"0\" " 530 + "duration=\" 150\" "534 + "duration=\"" + EVENT_DURATION + "\" " 531 535 + "source=\"" + target.getJacaretoHierarchy() + "\" " 532 536 + "class=\"" + target.getSpecification().getType() + "\" "
Note: See TracChangeset
for help on using the changeset viewer.