aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/javac
AgeCommit message (Expand)Author
2010-11-08'val' now also works in foreach loops, on both javac and ecj / eclipse.Reinier Zwitserloot
2010-11-08Added support for canEqual in ecjRoel Spilker
2010-11-08Merge branch 'master' of github.com:rzwitserloot/lombokReinier Zwitserloot
2010-11-08Delombok on files with only 'val' in them, without --force, didn't do anythin...Reinier Zwitserloot
2010-11-08'val' in javac now errors out with an appropriate message on val x = { .. }, ...Reinier Zwitserloot
2010-11-08Added support for canEquals in javacRoel Spilker
2010-11-07Use the actual annotation value to process the @Log annotations instead of th...Roel Spilker
2010-11-07Provide access to the actual annotation valuesRoel Spilker
2010-11-06Updated documentation on @Log and moved them all to lombok.extern.*Roel Spilker
2010-11-06Have j.u.l. be invoked with TargetType.class.getName() instead of "TargetType"Roel Spilker
2010-11-06Reorder parametersRoel Spilker
2010-11-06Use an annotation instead of implementations of interfacesRoel Spilker
2010-11-06Added support for Log4J, Commons and JUL in the javac handlerRoel Spilker
2010-11-03Intial support for @Log, for now only slf4jRoel Spilker
2010-11-03Merge branch 'master' of github.com:rzwitserloot/lombokReinier Zwitserloot
2010-11-03val in java, including tests and javac resolution utilities.Reinier Zwitserloot
2010-11-03Some small framework updates to accomodate resolution.Reinier Zwitserloot
2010-11-02Issue 154: Add null-check to @CleanupRoel Spilker
2010-10-04The previous commit (fix for ZIP closed errors) actually breaks lombok on sys...Reinier Zwitserloot
2010-10-01Setter now supports 'onMethod=@Annotations' and 'onParam=@Annotations' for ja...Reinier Zwitserloot
2010-10-01Fix for "ZIP file closed" errors caused by the postprocessor trying to load m...Reinier Zwitserloot
2010-09-30trivial: javadoc fixes, renamed 'className' to 'fileName'for postprocessorReinier Zwitserloot
2010-08-15Merge branch 'postProcess'Reinier Zwitserloot
2010-08-14delombok added type parameters to constructors that mirror the type's own typ...Reinier Zwitserloot
2010-08-05Moved wrapOutputStream to PostCompilerRoel Spilker
2010-08-03Added initial support for post-compilation byte code transformationsRoel Spilker
2010-07-28Fix for issue #136: @Getter and @Setter now work on static fields again.Reinier Zwitserloot
2010-07-25Added changelog entry for #133: Outer.Inner instead of just Inner in toString().Reinier Zwitserloot
2010-07-25Issue 133: @ToString on an inner class should print Outer.Inner instead of InnerRoel Spilker
2010-07-25Do not generate @ConstructorProperties for method-local classesRoel Spilker
2010-07-25Bugfix: in JavacNode intintializers were not structurally significantRoel Spilker
2010-07-22toString(), equals(), and hashCode() now use getX() instead of x if either it...Reinier Zwitserloot
2010-07-22Updated copyright statements and version release name.Reinier Zwitserloot
2010-07-22Added tests for ecj, fixed a few minor bugs that came out of that.Reinier Zwitserloot
2010-07-21Added using .getX() instead of using .x in equals, hashCode, and toString. Al...Reinier Zwitserloot
2010-07-21Refactor: for using this.getX() instead of this.x in generated toString(), eq...Reinier Zwitserloot
2010-07-20bugfix: The previous fix to stop removal of lombok annotations unless delombo...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
2010-07-20Moved DeleteLombokAnnotations to the proper package and source dir.Reinier Zwitserloot
2010-07-20import lombok.AccessLevel is now also removed during delomboking.Reinier Zwitserloot
2010-07-19Added support for @ConstructorProperties generation for generated constructors.Reinier Zwitserloot
2010-07-19[TRIVIAL] in case of bugs and we drop to toModifier() for AccessLevel.NONE, w...Reinier Zwitserloot
2010-07-19Added support for @AllArgsConstructor, @NoArgsConstructor, and @RequiredArgsC...Reinier Zwitserloot
2010-07-18All generated fields and methods now get a @SuppressWarnings("all").Reinier Zwitserloot
2010-07-18All field accesses done by generated lombok methods are now qualified with 't...Reinier Zwitserloot
2010-07-17In our efforts to eliminate annotations for delombok, we also eliminated all ...Reinier Zwitserloot
2010-07-17Bugfix: Annotations on types were being ignored if the type had no members in...Reinier Zwitserloot
2010-07-17Implements issue #129: @Getter and @Setter are now legal on entire types.Reinier Zwitserloot
2010-07-16Updated to helios. A few new warnings popped up; handled those.Reinier Zwitserloot
2009-12-23generalized the annotation processor that lombok.jar represents into a main c...Reinier Zwitserloot