Changes between Version 3 and Version 4 of GoodCodeExamples
- Timestamp:
- 05/20/09 14:57:54 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoodCodeExamples
v3 v4 3 3 * You can use the mouse-right-button menu in the source code area of eclipse -> Source -> "Generate hashCode() and equals()..." for template, but refactor it to look like the example bellow: 4 4 {{{ 5 @Override 6 public boolean equals(Object object) { 7 8 if (object == null) { 9 return false; 10 } 11 12 if (object == this) { 13 return true; 14 } 15 16 if (object.getClass() != this.getClass()) { 17 return false; 18 } 19 20 // Custom code here... 21 } 5 22 }}}