aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-09-03Added changelog note for previous commit.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-09-03Added support for checking if an annotation parameter is explicitly ↵Reinier Zwitserloot
mentioned. This functionality is used in quite a few places, so generalized it.
2009-09-03Added changelog on previous commit.Reinier Zwitserloot
2009-09-03"Fixed" issue #43" - problems with javax.validation.NotNull, which lombok ↵Reinier Zwitserloot
used to copy over to the method parameter of generated setters and constructors, but NotNull is not valid there. We've fixed it by limiting ourselves to annotations named 'NonNull', popular versions of which are legal in all the places we copy them to. This leaves IDEA's NotNull out in the cold, but, lombok doesn't support IDEA anyway. This is a workaround - once lombok supports type introspection we'll fix this properly.
2009-09-03I think this one FINALLY fixes the problems with SneakyThrows! Issue #30Reinier Zwitserloot
2009-09-02Version moved to 0.8.5-HEAD as part of a release process.Reinier Zwitserloot
2009-09-02Moved version from 0.8.4-HEAD to 0.8.4 as this version has just been released.Reinier Zwitserloot
2009-09-02Explained the correct pom magic incantation to force maven to use a v1.6 ↵Reinier Zwitserloot
compiler.
2009-09-02There was an issue for that last fix (of @SneakyThrows in eclipse), so added ↵Reinier Zwitserloot
an explanation plus a link to the issue to the changelog.
2009-09-01Fixed the problem where the eclipse editor AST just loses track of things ↵Reinier Zwitserloot
when using @SneakyThrows (syntax colouring goes away, first character in the file is italic).
2009-09-01[TRIVIAL]Reinier Zwitserloot
2009-09-01Added a simple rewriter to the catch block finder of ASTConverter: If it ↵Reinier Zwitserloot
can't find it, it used to return -1, which is exceedingly useless and causes no end of bugs. Changed it to returning the start point of the search, which is a more useful fallback.
2009-09-01More work on fully addressing the David Lynch bug (issue #41) - the ↵Reinier Zwitserloot
annotation @NotNull/@NonNull/@Nullable that is copied over by @Getter should no longer be causing the David Lynch bug.
2009-09-01Added position information _everywhere_ in EqualsAndHashCode and ToString ↵Reinier Zwitserloot
generating. This really does seem to fix the David Lynch bug (#41).
2009-09-01Well, bugger me! Adjusting the positions of the actual type identifier for ↵Reinier Zwitserloot
the generated annotations seems to fix the David Lynch bug (issue #41). Saving this now before further fiddling breaks things again.
2009-09-01Removed the various debug assist code in ClassLoaderWorkaround; the feature ↵Reinier Zwitserloot
works now, no longer needed.
2009-09-01Fixed documentation, specifically: added eclipse help system fix to the ↵Reinier Zwitserloot
changelog, and added some documentation on the special handling of @NonNull/@NotNull/@Nullable for Data and Getter/Setter on the website docs.
2009-09-01Fixed issue #26: Starting eclipse's help feature just shows you a 500 error, ↵Reinier Zwitserloot
ond depending on your eclipse version, a long stack trace. The problem boiled down to the JSP compiler used by the help system also being instrumented with lombok, but that's not exactly the environment lombok was expecting. Fixed by simply disabling lombok when the environments don't match what we expect. In the process, the instrumentation has been made a little more robust; multiple separate OSGi modules can all be instrumented now, instead of the first one winning.
2009-09-01Pretty showstopping bug in here.Reinier Zwitserloot
2009-08-28WHOOPS - that version number should have been updated much earlier. My fault ↵Reinier Zwitserloot
(reinierz).
2009-08-28Fixes issue #35: ToString now defaults to includeFieldNames=true.Reinier Zwitserloot
2009-08-28Updated documentation for @NonNull (and the changelog).Reinier Zwitserloot
2009-08-28null checks are no longer generated if you put @NonNull on primitives.Reinier Zwitserloot
2009-08-27Set the source positions in eclipse of copied over annotations (used in ↵Reinier Zwitserloot
@NonNull/@Nullable and getter/setter/constructor generation) to 0, as eclipse mysteriously fails for annotations copied WITH source positions, but only on methods (which happens for @Getter).
2009-08-27Merge branch 'nonnull'Reinier Zwitserloot
Conflicts: src/lombok/eclipse/handlers/HandleData.java src/lombok/eclipse/handlers/HandleEqualsAndHashCode.java src/lombok/eclipse/handlers/HandleSetter.java src/lombok/javac/handlers/HandleData.java src/lombok/javac/handlers/HandleEqualsAndHashCode.java src/lombok/javac/handlers/HandleSetter.java
2009-08-27Now @Nullable is also copied over.Reinier Zwitserloot
2009-08-27Added javadoc and copyright header.Reinier Zwitserloot
2009-08-27Updated the changelog (WIP 0.8.4)Reinier Zwitserloot
2009-08-27Made all parameters of all generated methods 'final'.Reinier Zwitserloot
2009-08-21Whoops, forgot to update the changelog of 0.8.3.Reinier Zwitserloot
2009-08-21Preparing release of 0.8.3.Reinier Zwitserloot
2009-08-19Added link to sun bug db which contains a feature request that is analogous ↵Reinier Zwitserloot
to @SneakyThrows, except with a keyword.
2009-08-14The fix in previous commit has been verified, so the diagnostic messages ↵Reinier Zwitserloot
have been removed.
2009-08-12More attempts to fix NullPointerExceptions reported on the forums.Reinier Zwitserloot
http://groups.google.com/group/project-lombok/browse_thread/thread/a8d59daaf7c1ae09
2009-08-12Added an extra check for non-standard javacs.Reinier Zwitserloot
2009-08-05Added a note to restart eclipse, after some confusing as reported on the ↵Reinier Zwitserloot
googlegroups.
2009-08-04ToString had the wrong title (@Data instead of @ToString)Reinier Zwitserloot
2009-08-01There was a bug in the annotation builder for javac, which would trigger ↵Reinier Zwitserloot
exceptions anytime you used a lombok annotation in implicit-value-parameter form (e.g: @Cleanup("release") instead of @Cleanup or @Cleanup(value="release"). Fixes issue #14
2009-08-01The warning for not enabling callSuper cannot be avoided, but there are ↵Reinier Zwitserloot
legal reasons for using it, so, changed it: explicitly setting 'callSuper=false' removes the warning. You only get the warning if callSuper is false because that's the default. Fixes issue #13
2009-08-01Introduced a NonNull annotation to generate null-checksRoel Spilker
2009-08-01The constructors will now also add non-final fields if they have a NonNull ↵Roel Spilker
annotation The constructor will test for null-values The constructor and static constructor will copy the NonNull annotations from the fields
2009-08-01Moved the check to see if a variable is null to the PKG utility classesRoel Spilker
2009-08-01@Setter will copy all NotNull and NonNull (case-insensitive) annotations to ↵Roel Spilker
the parameter @Getter will copy them to the getter method Added @NonNull to lombok to support null-checks in the setter
2009-07-31Added support for @NonNull in the @Setter annotationRoel Spilker
2009-07-31Merge branch 'master' of git@github.com:rzwitserloot/lombokReinier Zwitserloot
2009-07-31Added a test script for Eclipse on WindowsRoel Spilker
2009-07-31Added generating a sources.jar for maven, on a suggestion by (twitter) @bennorReinier Zwitserloot
2009-07-30Whoops, we updated the 'header' control on index.html and totally forgot to ↵Reinier Zwitserloot
port the changes over to slideshow.html which has the same header. Fixed now, and uploaded to website.
2009-07-29typo fix.Reinier Zwitserloot