Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-11 | Added @Log4j2 support. | Reinier Zwitserloot | |
2013-02-18 | Changed @Value to no longer imply @Wither. Usually you want only | Reinier Zwitserloot | |
a few or no withers at all, and adding them is a lot simpler than removing them. This is a breaking change, but then that's why @Value was in experimental in the first place. | |||
2013-02-11 | BIG commit: | Reinier Zwitserloot | |
* re-introduction of onMethod/onConstructor/onParam * tests checking error/warnings rewritten to be more heuristic, in order to accomodate difference in messaging between java6 and java 7 * Ability to eliminate java's own output of erroneous error messages (heh); i.e. those messages that are invalidated by lombok's actions. This mechanism is used for onMethod/onConstructor/onParam * First steps to unifying a billion setGeneratedBy calls into a single visitor traversal for eclipse' HandleGetter/Setter/Constructor/Wither * To simplify 'zooming in' the tests on just a few files, added an 'accept' mechanism. * Updated copyright headers of website to 2013. | |||
2012-11-17 | Added all documentation for the onX feature and updated changelog. | Reinier Zwitserloot | |
Now to actually write the feature (Well, rescue it from the onX-removal tag). | |||
2012-11-12 | [refactor] Cleaned up static imports (always use *), and refactored out ↵ | Reinier Zwitserloot | |
getCtcInt calls into constants as defined in Javac. | |||
2012-10-30 | Added annotation for the slf4j extended logger | grootjans | |
2012-10-29 | fix for issue #423: @ExtensionMethods failed with an NPE in the handler on ↵ | Reinier Zwitserloot | |
javac if generated constructors are involved. | |||
2012-09-17 | If val errors out, now at least you see where it happened. | Reinier Zwitserloot | |
2012-08-28 | If the JVM is started with -Dlombok.disable, lombok is disabled entirely for ↵ | Reinier Zwitserloot | |
both eclipse/ecj and javac operations. | |||
2012-08-24 | There is now an 'override this method' alternative for | Reinier Zwitserloot | |
setting the annotation you handle for an XAnnotationHandler<T>; default behaviour still extracts the T part out of the signature. | |||
2012-08-13 | FieldDefaults (and Value) did not call .rebuild() after changing modifiers. ↵ | Reinier Zwitserloot | |
This also meant delombok would not emit the changed code if that's all that changed, because it thought nothing changed. | |||
2012-08-10 | Added an optimization to javac: Don't force new resolution rounds if none of ↵ | Reinier Zwitserloot | |
the handlers in the next priority level need it. | |||
2012-08-10 | bugfix: Detecting javac6 didn't work on soylatte; now it does. | Reinier Zwitserloot | |
2012-08-10 | * Added priorities to handlers, along with implementation of the priority ↵ | Reinier Zwitserloot | |
system for javac and ecj. * @Value now makes the class itself final by default. | |||
2012-08-06 | Added @Value and @FieldDefaults implementations for javac and ecj, the ↵ | Reinier Zwitserloot | |
annotations including @NonFinal and @PackagePrivate, and some refactors. No tests yet. | |||
2012-08-06 | Merge branch 'master' into wither | Reinier Zwitserloot | |
Conflicts: src/core/lombok/javac/handlers/JavacHandlerUtil.java | |||
2012-07-18 | Lombok not longer removes the feature annotations and the import ↵ | Philipp Eichhorn | |
declarations of said annotations when running in Netbeans. This solves another batch of usability issues in Netbeans. | |||
2012-07-17 | Fix for issue 396: Static constructors generated for classes with type ↵ | Reinier Zwitserloot | |
parameters did not work in javac. | |||
2012-07-16 | fixed issue 391: Using 'staticConstructor' on @Data whilst an ↵ | Reinier Zwitserloot | |
@XxxArgsConstructor is present means it gets ignored, but until now lombok didn't warn you about this. | |||
2012-07-16 | Added setting position of generated nodes in javac's @Synchronized as a ↵ | Reinier Zwitserloot | |
'pilot' to see if we cause any problems with this approach. It does generate nicer error messages! Example: Using @Synchronized with named lock on a static method, naming a non-existent or instance lock. That used to error on line -1. | |||
2012-07-13 | Fixed issue 399: @ExtensionMethod broken for javac in nearly all cases | Philipp Eichhorn | |
2012-07-13 | Fixed issue 397: Rare java.lang.StackOverflowError in JavacResolution. | Philipp Eichhorn | |
2012-07-12 | Wither support + tests (javac only; ecj tests are currently set to ignore). | Reinier Zwitserloot | |
2012-07-11 | Fielding a request to make some stuff public. The things made public are ↵ | Reinier Zwitserloot | |
already part of things we'll change even if public (because, not part of lombok.X or lombok.experimental.X or lombok.experimental.**), nor is it particularly volatile. See issue #389. | |||
2012-07-11 | Made lombok more stable in netbeans based on some smart observations by Jan ↵ | Jan Lahoda | |
Lahoda of team Netbeans. | |||
2012-06-24 | [Issue 381] @SneakyThrows respects constructor calls | Philipp Eichhorn | |
2012-06-18 | Fix for issue 376 for javac. | Roel Spilker | |
2012-05-22 | Javac implementation of @ExtensionMethod. | Robbert Jan Grootjans | |
Casual tests show that it is working. Taken from lombok-pg. | |||
2012-04-29 | Issue 366: don't call the getter twice, fixed for Eclipse. | Roel Spilker | |
2012-04-29 | Issue 366: don't call the getter twice, fixed for javac. | Roel Spilker | |
2012-04-23 | Replaced the 'try some reflection and if that fails, oh well' code with ↵ | Reinier Zwitserloot | |
catch(Throwable) instead of catch(Exception). The whole point is to default to an alternative path is anything goes wrong, and it turns out there are various ways to get Throwables instead of Exceptions. | |||
2012-04-03 | Philipp Eichhorn's patch to allow non-top-level annotations to work with ↵ | Reinier Zwitserloot | |
lombok's annotation framework. | |||
2012-04-03 | Philipp Eichhorn's patch to use marker annotations instead of ↵ | Reinier Zwitserloot | |
boolean-returning interface methods for eclipse's postdiet and javac's isResolutionBased. | |||
2012-03-27 | Merge branch 'master' into accessors | Reinier Zwitserloot | |
Solved trivial merge conflict based on ordering of import statements Conflicts: src/core/lombok/javac/handlers/JavacHandlerUtil.java | |||
2012-03-27 | Fixes issue 326: In NetBeans, the generated default constructor was compiled ↵ | Roel Spilker | |
into the classfile, even when lombok generated constructors. | |||
2012-03-26 | In delombok mode, @Accessors is now eliminated from your source files. | Reinier Zwitserloot | |
2012-03-26 | Finished work on @Accessors | Reinier Zwitserloot | |
2012-03-26 | Merge branch 'acc2' into accessors | Reinier Zwitserloot | |
Conflicts: src/core/lombok/eclipse/handlers/HandleGetter.java src/core/lombok/eclipse/handlers/HandleSetter.java src/core/lombok/javac/handlers/HandleGetter.java src/core/lombok/javac/handlers/HandleSetter.java | |||
2012-03-26 | Updated findMethod with paramcount. | Reinier Zwitserloot | |
2012-03-22 | Bug fixes for updates to getter/setter stuff based on @Accessors. | Reinier Zwitserloot | |
2012-03-21 | Implementation of @Accessors. | Reinier Zwitserloot | |
2012-03-19 | Fix for issue 342: @Deprecated annotation not propagated to generated ↵ | Roel Spilker | |
getter/setter | |||
2012-03-05 | Issue 348: @Delegate should also generate @Deprecated when the interface ↵ | Roel Spilker | |
methods javadoc contains@deprecated | |||
2012-02-27 | Consistent use of JavacResolution.typeToJCTree instead of TreeMaker.Types - ↵ | Sander Koning | |
fixes issue 341 where use of @Delegate with T-extends type parameters would prepend a dot to the fully qualified classname. | |||
2012-02-25 | Handle deprecated by ordinary usage. | Taiki Sugawara | |
2012-02-22 | support delegate with deprecated comment. | Taiki Sugawara | |
2012-02-15 | 'val' is no longer legal in basic for loops now. Fixes issue #346 | Reinier Zwitserloot | |
2012-02-14 | Bumped copyright years on recently (in 2012) changed sources. | Reinier Zwitserloot | |
2012-02-14 | No more autobox/type coercion issues with @Getter(lazy=true) and primitive ↵ | Reinier Zwitserloot | |
types. (Issue #345). | |||
2012-02-14 | 'val' now works for member types whose outers have generics. (issue #343) | Reinier Zwitserloot | |