Changeset 2251 for trunk/autoquest-ui-core/src/main/java/de
- Timestamp:
- 12/11/17 15:31:19 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-ui-core/src/main/java/de/ugoe/cs/autoquest/commands/usability/CMDgetTaskModelCrossCoverage.java
r2231 r2251 1431 1431 return true; 1432 1432 } 1433 1434 /* (non-Javadoc) 1435 * @see java.lang.Object#hashCode() 1436 */ 1437 @Override 1438 public int hashCode() { 1439 return leftHandSide.hashCode(); 1440 } 1433 1441 1434 1442 } … … 1486 1494 (this.rule.equals(((ProductionRulePosition) obj).rule)) && 1487 1495 (this.position == ((ProductionRulePosition) obj).position); 1496 } 1497 1498 /* (non-Javadoc) 1499 * @see java.lang.Object#hashCode() 1500 */ 1501 @Override 1502 public int hashCode() { 1503 return this.rule.hashCode() + this.position; 1488 1504 } 1489 1505 … … 1616 1632 (((Edge) obj).symbol.equals(this.symbol)); 1617 1633 } 1634 } 1635 1636 /* (non-Javadoc) 1637 * @see java.lang.Object#hashCode() 1638 */ 1639 @Override 1640 public int hashCode() { 1641 return this.symbol.hashCode(); 1618 1642 } 1619 1643 }
Note: See TracChangeset
for help on using the changeset viewer.