Changeset 2243 for trunk/autoquest-core-usability
- Timestamp:
- 12/08/17 17:06:56 (7 years ago)
- Location:
- trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability/DefaultCursorPositioningRule.java
r1918 r2243 177 177 * 178 178 */ 179 private class FirstViewActionStatistics {179 private static class FirstViewActionStatistics { 180 180 181 181 /** */ -
trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability/DefaultValueRule.java
r2146 r2243 747 747 return "group(" + groupedTargets.size() + " targets, view " + super.getView() + ")"; 748 748 } 749 750 /* (non-Javadoc) 751 * @see de.ugoe.cs.autoquest.usability.DefaultValueRule.ValueSelectionTarget#equals(java.lang.Object) 752 */ 753 @Override 754 public boolean equals(Object obj) { 755 // Use parent implementation as the parent class will point to the parent GUI Element representing this group 756 return super.equals(obj); 757 } 758 759 /* (non-Javadoc) 760 * @see de.ugoe.cs.autoquest.usability.DefaultValueRule.ValueSelectionTarget#hashCode() 761 */ 762 @Override 763 public int hashCode() { 764 // Use parent implementation as the parent class will point to the parent GUI Element representing this group 765 return super.hashCode(); 766 } 749 767 } 750 768 } -
trunk/autoquest-core-usability/src/main/java/de/ugoe/cs/autoquest/usability/MisleadingClickCueRule.java
r2216 r2243 173 173 * 174 174 */ 175 private class UselessClickStatistics {175 private static class UselessClickStatistics { 176 176 177 177 /** */
Note: See TracChangeset
for help on using the changeset viewer.