Ignore:
Timestamp:
12/11/17 15:31:19 (7 years ago)
Author:
pharms
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-ui-core/src/main/java/de/ugoe/cs/autoquest/commands/usability/CMDgetTaskModelCrossCoverage.java

    r2231 r2251  
    14311431            return true; 
    14321432        } 
     1433 
     1434        /* (non-Javadoc) 
     1435         * @see java.lang.Object#hashCode() 
     1436         */ 
     1437        @Override 
     1438        public int hashCode() { 
     1439            return leftHandSide.hashCode(); 
     1440        } 
    14331441         
    14341442    } 
     
    14861494                (this.rule.equals(((ProductionRulePosition) obj).rule)) && 
    14871495                (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; 
    14881504        } 
    14891505 
     
    16161632                    (((Edge) obj).symbol.equals(this.symbol)); 
    16171633            } 
     1634        } 
     1635 
     1636        /* (non-Javadoc) 
     1637         * @see java.lang.Object#hashCode() 
     1638         */ 
     1639        @Override 
     1640        public int hashCode() { 
     1641            return this.symbol.hashCode(); 
    16181642        } 
    16191643    } 
Note: See TracChangeset for help on using the changeset viewer.