Changeset 2135 for trunk/autoquest-core-usability/src/main/java/de/ugoe
- Timestamp:
- 05/16/17 09:38:31 (7 years ago)
- Location:
- trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability/CheckBoxMultipleSelectionRule.java
r2042 r2135 217 217 */ 218 218 private void addValueChange(IEventTaskInstance instance) { 219 I GUIElement target = (IGUIElement)instance.getEvent().getTarget();219 IEventTarget target = instance.getEvent().getTarget(); 220 220 221 221 if (target instanceof ICheckBox) { 222 checkBoxes.add( target);222 checkBoxes.add((ICheckBox) target); 223 223 } 224 224 } -
trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability/UnusedGUIElementsRule.java
r2042 r2135 165 165 } 166 166 167 if (result.size() <= 0) { 168 return result; 169 } 170 167 171 // the problem is, that using the GUI model does not allow to find all in a specific view 168 172 // as the GUI model may return a merged element instead. But anyway, we can add those, which
Note: See TracChangeset
for help on using the changeset viewer.