Changeset 2146 for trunk/autoquest-plugin-jfc
- Timestamp:
- 05/19/17 11:31:29 (7 years ago)
- Location:
- trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCLogParser.java
r1009 r2146 43 43 44 44 import de.ugoe.cs.autoquest.eventcore.Event; 45 import de.ugoe.cs.autoquest.eventcore.EventTargetModelException; 45 46 import de.ugoe.cs.autoquest.eventcore.gui.IInteraction; 46 47 import de.ugoe.cs.autoquest.eventcore.gui.KeyPressed; … … 53 54 import de.ugoe.cs.autoquest.eventcore.guimodel.GUIElementFactory; 54 55 import de.ugoe.cs.autoquest.eventcore.guimodel.GUIModel; 55 import de.ugoe.cs.autoquest.eventcore.guimodel.GUIModelException;56 56 import de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElement; 57 57 import de.ugoe.cs.autoquest.keyboardmaps.VirtualKey; … … 407 407 (currentGuiElementPath, GUIElementFactory.getInstance()); 408 408 } 409 catch ( GUIModelException e) {409 catch (EventTargetModelException e) { 410 410 throw new SAXException("error in the GUI model provided in the log", e); 411 411 } -
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCSimplifiedLogParser.java
r1860 r2146 41 41 42 42 import de.ugoe.cs.autoquest.eventcore.Event; 43 import de.ugoe.cs.autoquest.eventcore.EventTargetModelException; 43 44 import de.ugoe.cs.autoquest.eventcore.gui.IInteraction; 44 45 import de.ugoe.cs.autoquest.eventcore.gui.KeyPressed; … … 51 52 import de.ugoe.cs.autoquest.eventcore.guimodel.GUIElementTree; 52 53 import de.ugoe.cs.autoquest.eventcore.guimodel.GUIModel; 53 import de.ugoe.cs.autoquest.eventcore.guimodel.GUIModelException;54 54 import de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElement; 55 55 import de.ugoe.cs.autoquest.keyboardmaps.VirtualKey; … … 436 436 currentGUIElementTree.add(guiElementId, parentGuiElementId, currentGuiElementSpec); 437 437 } 438 catch ( GUIModelException e) {438 catch (EventTargetModelException e) { 439 439 throw new SAXException("could not handle GUI element with hash " + 440 440 currentGUIElementHash + ": " + e.getMessage(), e); -
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/guimodel/JFCGUIElement.java
r2044 r2146 15 15 package de.ugoe.cs.autoquest.plugin.jfc.guimodel; 16 16 17 import de.ugoe.cs.autoquest.eventcore.IEventTargetSpec; 17 18 import de.ugoe.cs.autoquest.eventcore.guimodel.AbstractDefaultGUIElement; 18 19 import de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElement; 19 import de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElementSpec;20 20 import de.ugoe.cs.autoquest.eventcore.guimodel.IGUIView; 21 21 … … 169 169 */ 170 170 @Override 171 public void updateSpecification(I GUIElementSpec updateSpecification) {171 public void updateSpecification(IEventTargetSpec updateSpecification) { 172 172 if (updateSpecification instanceof JFCGUIElementSpec) { 173 173 specification.update(((JFCGUIElementSpec) updateSpecification)); -
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/guimodel/JFCGUIElementSpec.java
r1904 r2146 21 21 import org.apache.commons.lang.mutable.MutableInt; 22 22 23 import de.ugoe.cs.autoquest.eventcore.IEventTargetSpec; 23 24 import de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElement; 24 25 import de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElementSpec; … … 113 114 */ 114 115 @Override 115 public boolean getSimilarity(I GUIElementSpec other) {116 public boolean getSimilarity(IEventTargetSpec other) { 116 117 if (this == other) { 117 118 return true;
Note: See TracChangeset
for help on using the changeset viewer.