Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-28 | trivial: minor stylistic update | Reinier Zwitserloot | |
2010-07-28 | Fix for issue #136: @Getter and @Setter now work on static fields again. | Reinier Zwitserloot | |
2010-07-25 | post release version increase. | Reinier Zwitserloot | |
2010-07-25 | 0.9.3 release prep | Reinier Zwitserloot | |
2010-07-25 | Added changelog entry for #133: Outer.Inner instead of just Inner in toString(). | Reinier Zwitserloot | |
2010-07-25 | Issue 133: @ToString on an inner class should print Outer.Inner instead of Inner | Roel Spilker | |
2010-07-25 | Do not generate @ConstructorProperties for method-local classes | Roel Spilker | |
2010-07-25 | Bugfix: in JavacNode intintializers were not structurally significant | Roel Spilker | |
2010-07-25 | Fixed a bug in the mac os X installer's "Choose Location..." dialog which ↵ | Reinier Zwitserloot | |
_only_ let you choose directories, which is problematic for e.g. netbeans. Now you can pick any app, which isn't right either, but the mac's deplorable java filechoosers are to blame for this. I can't fix it, tried everything. This will have to do. | |||
2010-07-25 | Added version detection for netbeans. Installing into netbeans now does: | Reinier Zwitserloot | |
pre 6.8: Error explaining lombok isn't supported pre 6.8. 6.8: Install. post 6.8: Explain its no longer needed + how to make lombok.jar work in 6.9. | |||
2010-07-24 | Uninstalling lombok from netbeans was broken in the previous installer update. | Reinier Zwitserloot | |
2010-07-24 | When the installer errors, for example because it's trying to remove itself, ↵ | Reinier Zwitserloot | |
which is not possible in windows, the GUI would hang after telling you about the problem. It no longer does this. It will also remove itself from the INI file BEFORE removing itself, because then the uninstall process is more likely to do what you want, and it'll detect the situation of either trying to install itself (which it skips, no point), or uninstalling itself (which, if it leads to a problem in windows, now leads to a customized error message explaining what the user is to do next). Fixes issue #57. | |||
2010-07-22 | toString(), equals(), and hashCode() now use getX() instead of x if either ↵ | Reinier Zwitserloot | |
it exists OR it will be generated by some other lombok annotation, addressing issue #110. code deduplication by removing HandleData's scanning for fields, which is now no longer done; the sub-parts of Data (Getter, Setter, RequiredArgsConstructor, etc) take care of it now. fix for class-level @Getter/@Setter, which used to go for every field. Now they skip the usual fields (static, for setters final, and $ prefixed fields). Bugfix for @Data not recognizing that it should let field-level @Getter/@Setter take care of generating the getter/setter for multi field declarations (@Getter int x, y); | |||
2010-07-22 | Updated copyright statements and version release name. | Reinier Zwitserloot | |
2010-07-22 | eclipse toString() now uses .getX() instead of .x. | Reinier Zwitserloot | |
2010-07-22 | Compatibility update for PrettyCommentsPrinter, which should now work better ↵ | Reinier Zwitserloot | |
in javac 7. | |||
2010-07-22 | Added tests for ecj, fixed a few minor bugs that came out of that. | Reinier Zwitserloot | |
2010-07-21 | delombok on most javacs would quit with a NoSuchFieldError if it contains ↵ | Reinier Zwitserloot | |
<?> style wildcards anywhere in the source. No longer. Fixes issue #134. | |||
2010-07-21 | Added using .getX() instead of using .x in equals, hashCode, and toString. ↵ | Reinier Zwitserloot | |
Also updated changelog as well as the docs. Also updated usage examples for @EqualsAndHashCode, @ToString, and @Data, which also contained some other minor issues (such as missing this. qualifiers). Still to do is to detect that getters don't exist _yet_ but will later due to @Getter or @Data. | |||
2010-07-21 | Refactor: for using this.getX() instead of this.x in generated toString(), ↵ | Reinier Zwitserloot | |
equals(), and hashCode() methods. Field accessors are now always generated by a utility method. The one thing that remains is adding a getter searcher to this utility method. | |||
2010-07-21 | Added some 'live debugging' - patches to improve error reporting for bugs ↵ | Reinier Zwitserloot | |
that are very hard to reproduce. | |||
2010-07-20 | Added support for setting up an alternative diagnostics listener | Roel Spilker | |
2010-07-20 | bugfix: The previous fix to stop removal of lombok annotations unless ↵ | Reinier Zwitserloot | |
delombok is running actually only worked for the import, and still deleted the annotation. No longer. | |||
2010-07-20 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2010-07-20 | @Getter int x, y; used to only apply to 'x', now it applies to both x and y. | Reinier Zwitserloot | |
Fixes issue #54 | |||
2010-07-20 | Added references to other constructor annotations in the javadoc | Roel Spilker | |
2010-07-20 | Moved DeleteLombokAnnotations to the proper package and source dir. | Reinier Zwitserloot | |
2010-07-20 | import lombok.*; wasn't working in eclipse. It is now. | Reinier Zwitserloot | |
Fixes issue #102. | |||
2010-07-20 | Added copyright header to DelombokApp.java | Reinier Zwitserloot | |
2010-07-20 | import lombok.AccessLevel is now also removed during delomboking. | Reinier Zwitserloot | |
Also, when NOT running delombok, the javac processors no longer delete the lombok annotations as they process. This is particularly relevant for netbeans. This fixes issue #100 and #103. | |||
2010-07-19 | Added support for @ConstructorProperties generation for generated constructors. | Reinier Zwitserloot | |
Also added fix: @Constructor with access level none are now no longer generated. Implements issue #122 | |||
2010-07-19 | [TRIVIAL] in case of bugs and we drop to toModifier() for AccessLevel.NONE, ↵ | Reinier Zwitserloot | |
we now make a private method/constructor instead of a public one. Still not right, but less wrong than public. | |||
2010-07-19 | Added javadoc to the annotation parameters for the @Constructor annotations, | Reinier Zwitserloot | |
and also added the suppressConstructorProperties flag. | |||
2010-07-19 | Added support for @NoArgsConstructor, @RequiredArgsConstructor and ↵ | Reinier Zwitserloot | |
@AllArgsConstructor for eclipse. Implements issue #79. | |||
2010-07-19 | Added support for @AllArgsConstructor, @NoArgsConstructor, and ↵ | Reinier Zwitserloot | |
@RequiredArgsConstructor for javac. | |||
2010-07-19 | Added (and left intentionally undocumented) an option to force the installer ↵ | Reinier Zwitserloot | |
to use an absolute path for location of lombok.jar: java -Dlombok.installer.fullpath -jar lombok.jar There have been some reports that under helios the relative path no longer cuts it, but all reports come from tweaked installs. In case folks run into this, we can now give them a quick solution. See: http://groups.google.com/group/project-lombok/browse_thread/thread/2071edd5495a8cd7 | |||
2010-07-18 | All generated fields and methods now get a @SuppressWarnings("all"). | Reinier Zwitserloot | |
Implements issue #47. | |||
2010-07-18 | All field accesses done by generated lombok methods are now qualified with ↵ | Reinier Zwitserloot | |
'this.' Addresses issue #48 | |||
2010-07-17 | In our efforts to eliminate annotations for delombok, we also eliminated all ↵ | Reinier Zwitserloot | |
traces of the annotation for lombok itself. This didn't work well with @Data and how it interacts with existing @Getter/@Setter annotations. @Data scans for those annotations to determine that it shouldn't do anything. By deleting them, this process wasn't working anymore. | |||
2010-07-17 | Bugfix: Annotations on types were being ignored if the type had no members ↵ | Reinier Zwitserloot | |
in it, in javac only. | |||
2010-07-17 | Implements issue #129: @Getter and @Setter are now legal on entire types. | Reinier Zwitserloot | |
2010-07-17 | Updated spelling of LICENCE to LICENSE, and updated copyright notice of help ↵ | Reinier Zwitserloot | |
text printed by main executable. | |||
2010-07-16 | previous update to the code due to changes in lombok.patcher introduced a ↵ | Reinier Zwitserloot | |
bug, which was causing the following exception in the eclipse error log: java.lang.VerifyError: (class: org/eclipse/jdt/internal/corext/dom/LinkedNodeFinder, method: findByBinding signature: (Lorg/eclipse/jdt/core/dom/ASTNode;Lorg/eclipse/jdt/core/dom/IBinding;)[Lorg/eclipse/jdt/core/dom/SimpleName;) Incompatible argument to function | |||
2010-07-16 | Updated to helios. A few new warnings popped up; handled those. | Reinier Zwitserloot | |
2010-07-14 | Added copying of @CheckForNull from a field to autogenerated getters and ↵ | Reinier Zwitserloot | |
setters, just like @Nullable is copied. Implements feature request issue 128. | |||
2010-07-12 | Changed build system to ivy. | Reinier Zwitserloot | |
2010-04-24 | Merge branch 'master' of git@github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2010-04-24 | Keeping pace with changes to lombok.patcher. | Reinier Zwitserloot | |
2010-02-14 | Merge branch 'master' of git@github.com:rzwitserloot/lombok | Roel Spilker | |
2010-02-14 | Added unicode escape writing to avoid pesky encoding issues. | Roel Spilker | |