aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/EqualsAndHashCode.java
AgeCommit message (Collapse)Author
2009-10-16Switched all use of <code></code> in javadoc to {@code}.Reinier Zwitserloot
2009-09-03Added a bunch of javadoc. No other changes.Reinier Zwitserloot
2009-09-03Addressed issue #32: The @EqualsAndHashCode and @ToString annotations now ↵Reinier Zwitserloot
support explicitly listing the fields to use, via the new 'of' parameter. We've also added any fields that start with $ to the default excludes list. Lombok itself can generate these fields ($lock of @Synchronized, for example), and in general they probably should count as effectively not part of the class.
2009-07-28Updated the javadoc of EqualsAndHashCode and ToString (the annotation source ↵Reinier Zwitserloot
files)
2009-07-27Split off generation of equals() and hashCode() methods form @Data into a ↵Reinier Zwitserloot
new annotation, @EqualsAndHashCode. Addresses issue #8