Changeset 940 for trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs
- Timestamp:
- 10/23/12 10:05:29 (12 years ago)
- Location:
- trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc
- Files:
-
- 8 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/EventGenerator.java
r929 r940 40 40 import de.ugoe.cs.autoquest.plugin.mfc.eventcore.WindowsMessageType; 41 41 import de.ugoe.cs.autoquest.plugin.mfc.guimodel.MFCGUIElement; 42 import de.ugoe.cs.autoquest.plugin.mfc.guimodel. WindowTree;42 import de.ugoe.cs.autoquest.plugin.mfc.guimodel.MFCWindowTree; 43 43 import de.ugoe.cs.util.console.Console; 44 44 … … 124 124 * </p> 125 125 */ 126 private WindowTree windowTree;126 private MFCWindowTree windowTree; 127 127 128 128 /** … … 131 131 * </p> 132 132 */ 133 public EventGenerator( WindowTree windowTree) {133 public EventGenerator(MFCWindowTree windowTree) { 134 134 rulesFile = "data/rules.xml"; 135 135 this.windowTree = windowTree; -
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/HandlerCreate.java
r927 r940 15 15 package de.ugoe.cs.autoquest.plugin.mfc; 16 16 17 import de.ugoe.cs.autoquest.plugin.mfc.guimodel. WindowTree;17 import de.ugoe.cs.autoquest.plugin.mfc.guimodel.MFCWindowTree; 18 18 19 19 /** 20 20 * <p> 21 * Message handler for {@code WM_CREATE} messages. The handler maintains the {@link WindowTree}.21 * Message handler for {@code WM_CREATE} messages. The handler maintains the {@link MFCWindowTree}. 22 22 * </p> 23 23 * … … 35 35 * parsing 36 36 */ 37 public HandlerCreate( WindowTree windowTree) {37 public HandlerCreate(MFCWindowTree windowTree) { 38 38 super(windowTree); 39 39 } -
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/HandlerDestroy.java
r927 r940 15 15 package de.ugoe.cs.autoquest.plugin.mfc; 16 16 17 import de.ugoe.cs.autoquest.plugin.mfc.guimodel. WindowTree;17 import de.ugoe.cs.autoquest.plugin.mfc.guimodel.MFCWindowTree; 18 18 19 19 /** 20 20 * <p> 21 * Handler for {@code WM_DESTROY} message. The handler maintains the {@link WindowTree}.21 * Handler for {@code WM_DESTROY} message. The handler maintains the {@link MFCWindowTree}. 22 22 * </p> 23 23 * … … 35 35 * the tree of GUI element specifications to be created and adapted during parsing 36 36 */ 37 public HandlerDestroy( WindowTree windowTree) {37 public HandlerDestroy(MFCWindowTree windowTree) { 38 38 super(windowTree); 39 39 } -
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/HandlerSetText.java
r927 r940 15 15 package de.ugoe.cs.autoquest.plugin.mfc; 16 16 17 import de.ugoe.cs.autoquest.plugin.mfc.guimodel. WindowTree;17 import de.ugoe.cs.autoquest.plugin.mfc.guimodel.MFCWindowTree; 18 18 19 19 /** 20 20 * <p> 21 * Handles {@code WM_SETTEXT} messages. Handler maintains the {@link WindowTree}.21 * Handles {@code WM_SETTEXT} messages. Handler maintains the {@link MFCWindowTree}. 22 22 * </p> 23 23 * … … 35 35 * the tree of GUI element specifications to be created and adapted during parsing 36 36 */ 37 public HandlerSetText( WindowTree windowTree) {37 public HandlerSetText(MFCWindowTree windowTree) { 38 38 super(windowTree); 39 39 } -
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/MFCLogParser.java
r927 r940 45 45 import de.ugoe.cs.autoquest.plugin.mfc.eventcore.WindowsMessageType; 46 46 import de.ugoe.cs.autoquest.plugin.mfc.guimodel.MFCGUIElement; 47 import de.ugoe.cs.autoquest.plugin.mfc.guimodel. WindowTree;47 import de.ugoe.cs.autoquest.plugin.mfc.guimodel.MFCWindowTree; 48 48 import de.ugoe.cs.util.StringTools; 49 49 import de.ugoe.cs.util.console.Console; … … 75 75 * </p> 76 76 */ 77 private WindowTree currentWindowTree;77 private MFCWindowTree currentWindowTree; 78 78 79 79 /** … … 273 273 // of thread problems. So instead of creating a new GUI model, preserve it. 274 274 if (currentWindowTree == null) { 275 currentWindowTree = new WindowTree();275 currentWindowTree = new MFCWindowTree(); 276 276 } 277 277 sequenceSplitter = new SequenceSplitter(currentWindowTree); -
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/MessageHandler.java
r927 r940 15 15 package de.ugoe.cs.autoquest.plugin.mfc; 16 16 17 import de.ugoe.cs.autoquest.plugin.mfc.guimodel. WindowTree;17 import de.ugoe.cs.autoquest.plugin.mfc.guimodel.MFCWindowTree; 18 18 19 19 /** … … 35 35 * </p> 36 36 */ 37 private WindowTree windowTree;37 private MFCWindowTree windowTree; 38 38 39 39 /** … … 45 45 * parsing 46 46 */ 47 protected MessageHandler( WindowTree windowTree) {47 protected MessageHandler(MFCWindowTree windowTree) { 48 48 this.windowTree = windowTree; 49 49 } … … 78 78 * @return the window tree created and adapted during parsing 79 79 */ 80 protected WindowTree getWindowTree() {80 protected MFCWindowTree getWindowTree() { 81 81 return windowTree; 82 82 } -
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/SequenceSplitter.java
r927 r940 22 22 import de.ugoe.cs.autoquest.plugin.mfc.eventcore.WindowsMessage; 23 23 import de.ugoe.cs.autoquest.plugin.mfc.eventcore.WindowsMessageType; 24 import de.ugoe.cs.autoquest.plugin.mfc.guimodel. WindowTree;24 import de.ugoe.cs.autoquest.plugin.mfc.guimodel.MFCWindowTree; 25 25 import de.ugoe.cs.util.console.Console; 26 26 … … 85 85 * </p> 86 86 */ 87 public SequenceSplitter( WindowTree windowTree) {87 public SequenceSplitter(MFCWindowTree windowTree) { 88 88 currentSequence = new LinkedList<WindowsMessage>(); 89 89 openDowns = 0; -
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/guimodel/MFCGUIElementSpec.java
r927 r940 23 23 /** 24 24 * <p> 25 * This class implements a node in the {@link WindowTree} that is maintained during parsing a25 * This class implements a node in the {@link MFCWindowTree} that is maintained during parsing a 26 26 * session. 27 27 * </p> … … 97 97 * </p> 98 98 * <p> 99 * The constructor is protected WindowTreeNode may only be created from the WindowTree.99 * The constructor is protected WindowTreeNode may only be created from the MFCWindowTree. 100 100 * </p> 101 101 * -
trunk/autoquest-plugin-mfc/src/main/java/de/ugoe/cs/autoquest/plugin/mfc/guimodel/MFCWindowTree.java
r927 r940 39 39 * @version 1.0 40 40 */ 41 public class WindowTree {41 public class MFCWindowTree { 42 42 43 43 /** … … 97 97 /** 98 98 * <p> 99 * Creates a new WindowTree.99 * Creates a new MFCWindowTree. 100 100 * </p> 101 101 * <p> … … 103 103 * </p> 104 104 */ 105 public WindowTree() {105 public MFCWindowTree() { 106 106 guiElementSpecs = new HashMap<Long, MFCGUIElementSpec>(); 107 107 targets = new HashSet<MFCGUIElementSpec>(); … … 282 282 /** 283 283 * <p> 284 * Returns the number of nodes contained in the WindowTree.284 * Returns the number of nodes contained in the MFCWindowTree. 285 285 * </p> 286 286 *
Note: See TracChangeset
for help on using the changeset viewer.