Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | Updated changelog: issue 326 | Roel Spilker | |
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 | trivial update to changelog. | Reinier Zwitserloot | |
2012-03-26 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2012-03-26 | Added full test suite for @Accessors, as well as the new rules for whether ↵ | Reinier Zwitserloot | |
or not a method is already there so lombok shouldn't generate it (now number of parameters matters), and added generics testing to RequiredArgsConstructor's static constructor feature. | |||
2012-03-26 | delombok now prints a space in between method type args and return type. | Reinier Zwitserloot | |
2012-03-26 | In delombok mode, @Accessors is now eliminated from your source files. | Reinier Zwitserloot | |
2012-03-26 | Added issue 339 to the changelog | Roel Spilker | |
2012-03-26 | Merge branch 'master' of github.com:rzwitserloot/lombok | Roel Spilker | |
2012-03-26 | Fix for issue 339: return "java/lang/Object" when an error occurs. | Roel Spilker | |
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-26 | Trivial update to build script. | Reinier Zwitserloot | |
2012-03-22 | Merge remote branch 'origin/master' | Reinier Zwitserloot | |
2012-03-22 | build script now contains an explicit javadoc target. | Reinier Zwitserloot | |
2012-03-22 | Expanded on android+maven+eclipse instructions. | 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-21 | Added ability to create new instances of AnnotationValues with all default ↵ | Reinier Zwitserloot | |
values | |||
2012-03-21 | Documentation for new @Accessors feature as well as the API (the annotation ↵ | Reinier Zwitserloot | |
in experimental package). | |||
2012-03-19 | Added debugging code to find the cause of issue 339 | Roel Spilker | |
2012-03-19 | Updated changelog | Roel Spilker | |
2012-03-19 | Fix for issue 342: @Deprecated annotation not propagated to generated ↵ | Roel Spilker | |
getter/setter | |||
2012-03-19 | Allow matching on types from java.lang.* | Roel Spilker | |
2012-03-19 | Added documentation (and a minor tidbit of support) for android. | Reinier Zwitserloot | |
2012-03-05 | Merge branch 'master' of github.com:rzwitserloot/lombok | Robbert Jan Grootjans | |
Conflicts: doc/changelog.markdown | |||
2012-03-05 | PrettyCommentsPrinter now prints default clause of annotation methods. Fixes ↵ | Robbert Jan Grootjans | |
Issue #350 | |||
2012-03-05 | Updated changelog | Roel Spilker | |
2012-03-05 | Issue 349: Test failed in some environments | Roel Spilker | |
2012-03-05 | Merge branch 'issue349-test-failed' of https://github.com/buzztaiki/lombok ↵ | Roel Spilker | |
into buzztaiki-issue349-test-failed | |||
2012-03-05 | Issue 348: @Delegate should also generate @Deprecated when the interface ↵ | Roel Spilker | |
methods javadoc contains@deprecated | |||
2012-02-27 | Update changelog | Sander Koning | |
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-27 | Update credits page to reflect AUTHORS | Sander Koning | |
2012-02-27 | Alphabetize AUTHORS | Sander Koning | |
2012-02-27 | Fix note on @Getter wrt hasX fields: prefix is actually generated ↵ | Sander Koning | |
(conforming to beanspec) | |||
2012-02-25 | Use english locale on test via delombok for using english message catalog. | Taiki Sugawara | |
2012-02-25 | Handle deprecated by ordinary usage. | Taiki Sugawara | |
2012-02-25 | Add my name to AUTHORS | Taiki Sugawara | |
2012-02-24 | Add deprecated comment support for eclipse. | Taiki Sugawara | |
2012-02-24 | Remove spaces in after files. | Taiki Sugawara | |
2012-02-23 | Make the unittests for ecj work on windows | Roel Spilker | |
2012-02-22 | support delegate with deprecated comment. | Taiki Sugawara | |
2012-02-15 | Couple more tests for val | Reinier Zwitserloot | |
2012-02-15 | Updated changelog with the recent changes. | Reinier Zwitserloot | |
2012-02-15 | 'val' is no longer legal in basic for loops now. Fixes issue #346 | Reinier Zwitserloot | |
2012-02-14 | ecj tests and eclipse tests are now effectively doing the same thing, except ↵ | Reinier Zwitserloot | |
the ecj tests are written in a slightly more close-to-reality way, and do work for 'val'. eclipse test aspect removed. | |||
2012-02-14 | More test files, test files updated to be valid java, and ecj test now goes ↵ | Reinier Zwitserloot | |
through the complete compile process. This means val and @Delegate testing is now enabled. TODO: Update -eclipse tests. |