Example #1
0
 @Override
 public int hashCode() {
   final int prime = 43;
   int result = super.hashCode();
   result = prime * result + (eliminated ? 1231 : 1237);
   result = prime * result + owner.hashCode();
   result = prime * result + slot.hashCode();
   return result;
 }
Example #2
0
 @Override
 public boolean equals(Object obj) {
   if (obj instanceof HotSpotMonitorValue) {
     HotSpotMonitorValue other = (HotSpotMonitorValue) obj;
     return super.equals(obj)
         && eliminated == other.eliminated
         && owner.equals(other.owner)
         && slot.equals(other.slot);
   }
   return false;
 }