aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/ToString.java
AgeCommit message (Collapse)Author
2009-11-25Refactored the source folders.Reinier Zwitserloot
2009-10-16Switched all use of <code></code> in javadoc to {@code}.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-08-28Fixes issue #35: ToString now defaults to includeFieldNames=true.Reinier Zwitserloot
2009-07-28Updated the javadoc of EqualsAndHashCode and ToString (the annotation source ↵Reinier Zwitserloot
files)
2009-07-27Added support for @ToString annotation. The code for generating toStrings ↵Reinier Zwitserloot
has now moved from HandleData to the new HandleToString.