Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-29 | some more work on why delombok isn't tracking changes due to val alone. | Reinier Zwitserloot | |
2010-11-29 | Use includeantruntime="false" for safety and to avoid warnings under Ant 1.8.0+. | Jesse Glick | |
2010-11-29 | Make compilable under JDK 7's javac (thus also removing an error mark in ↵ | Jesse Glick | |
NetBeans' editor). src/core/lombok/core/LombokNode.java:260: gatherAndRemoveChildren(Map<N,L>) has private access in LombokNode for (L child : children) child.gatherAndRemoveChildren(map); ^ where N,L,A are type-variables: N extends Object declared in class LombokNode L extends LombokNode<A,L,N> declared in class LombokNode A extends AST<A,L,N> declared in class LombokNode | |||
2010-11-29 | @ToString usage example had a typo in it (used 'excludes' instead of the ↵ | Reinier Zwitserloot | |
correct 'exclude'). Thanks to Francois Marot for spotting this problem. Fixes issue #168. | |||
2010-11-29 | 'val' now only works if its a reference to lombok.val on javac. | Reinier Zwitserloot | |
2010-11-29 | Added 'val' as a type which the 'val' fake keyword must resolve to before ↵ | Reinier Zwitserloot | |
val works, as a gesture to make val less 'magical'. It even works, in eclipse. Next up: javac. | |||
2010-11-29 | The somewhat rare conflict in typevar names problem has now been solved in ↵ | Reinier Zwitserloot | |
javac. | |||
2010-11-28 | bugfixes for typeToJCTree. HandleDelegate (javac) is working better. | Reinier Zwitserloot | |
2010-11-27 | Want to code lombok in intellij? Run 'ant intellij', possible from this ↵ | Reinier Zwitserloot | |
patch on, to do so. This involved switching to ivyplusplus 1.4 and includes a hack to make sure 1.3 users get upgraded. | |||
2010-11-26 | Fixed @PrintAST, which wouldn't do anything at all in javac mode since ↵ | Reinier Zwitserloot | |
resolution support was added. | |||
2010-11-25 | Documented @Delegate with javadoc. | Reinier Zwitserloot | |
2010-11-25 | @Delegate, at least without value=, seems to work great in javac now! | Reinier Zwitserloot | |
2010-11-22 | Updated version name - should have done that after pushing 0.10.0-BETA2. | Reinier Zwitserloot | |
2010-11-22 | Merge branch 'master' of git@github.com:rzwitserloot/lombok | Roel Spilker | |
2010-11-22 | - Renamed the diverse @Log annotations to give them distinct names | Roel Spilker | |
- Removed the option to specify a different class to log on - Updated tests and documentation | |||
2010-11-22 | Cleaned up the patch fixes in eclipse for finding end of identifier and ↵ | Reinier Zwitserloot | |
start of catch block. Maaartin-1 reported issues that sound like these were at fault they we were not able to reproduce them. | |||
2010-11-22 | Clarified the need to run ant eclipse in README. | Reinier Zwitserloot | |
2010-11-22 | Merge branch 'master' of git@github.com:rzwitserloot/lombok | Roel Spilker | |
2010-11-22 | Added storing instanceof JavacTypes in JavacAST, and renamed ↵ | Reinier Zwitserloot | |
JavacResolution's methods. | |||
2010-11-22 | Ivy cache is now local to prevent cache conflict with other ivy using projects. | Roel Spilker | |
2010-11-19 | Fix for reported NPEs by Stephen Haberman. | Reinier Zwitserloot | |
2010-11-18 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2010-11-18 | Pre-beta-release | Reinier Zwitserloot | |
2010-11-18 | Fixed @AllArgsConstructor screwing up with final fields that have been ↵ | Reinier Zwitserloot | |
initialized. | |||
2010-11-18 | Added link to SpoonVennersOdersky paper about equality. | Reinier Zwitserloot | |
2010-11-18 | Merge remote branch 'origin/master' | Reinier Zwitserloot | |
2010-11-18 | Added documentation for val and @Getter(lazy=true) and updated docs for Log ↵ | Reinier Zwitserloot | |
and EqualsAndHashCode to reflect new lombok 0.10 features. | |||
2010-11-18 | Fixed reference to java6 core javadoc package list, which we accidentally ↵ | Reinier Zwitserloot | |
removed a long long time ago in commit e693672cd44ab0e648643f4b5c24b1c177ab6c84 | |||
2010-11-18 | In javac, use ListBuffer to append | Roel Spilker | |
2010-11-16 | Added extra javadoc links | Roel Spilker | |
2010-11-15 | Fixed reference to java6 core javadoc package list, which we accidentally ↵ | Reinier Zwitserloot | |
removed a long long time ago in commit e693672cd44ab0e648643f4b5c24b1c177ab6c84 | |||
2010-11-15 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2010-11-15 | Added copyright notices to PatchVal and PatchDelegate [trivial] | Reinier Zwitserloot | |
2010-11-15 | eclipse @Delegate: Whoops; earlier fixes meant methods that existed ↵ | Reinier Zwitserloot | |
explicitly in multiple supertypes got added that many times, resulting in duplicate method errors. Fixed. | |||
2010-11-15 | In javac, use ListBuffer to append | Roel Spilker | |
2010-11-14 | eclipse: @Delegate now no longer generates methods that you already wrote. | Reinier Zwitserloot | |
2010-11-14 | Removed the brainfart where final methods aren't delegated. | Reinier Zwitserloot | |
2010-11-14 | Merge branch 'master' of github.com:rzwitserloot/lombok | Reinier Zwitserloot | |
2010-11-14 | eclipse: methods with their own type variables can now be delegated. | Reinier Zwitserloot | |
eclipse: local classes can now be delegated. eclipse: source position of delegated methods are now set properly. cleaned out a bunch of debug helpers. | |||
2010-11-14 | Added meta-annotations | Roel Spilker | |
2010-11-14 | Make @AnyAnnotation illegal to use | Roel Spilker | |
2010-11-14 | Moved patch code specific to val and delegate to their own class. | Reinier Zwitserloot | |
@Delegate in eclipse works pretty much exactly as designed at this point! | |||
2010-11-13 | Jiggered the hook point a bit for eclipse 'delegate' support and it looks ↵ | Reinier Zwitserloot | |
like this might just work. | |||
2010-11-11 | Merge branch 'master' into delegate | Reinier Zwitserloot | |
2010-11-11 | Mostly fruitless work on making delegate work in eclipse. | Reinier Zwitserloot | |
2010-11-11 | @Getter(lazy=true) now also works in Eclipse | Roel Spilker | |
2010-11-11 | Set generated on all created ASTNodes | Roel Spilker | |
2010-11-11 | Merge branch 'master' into lazyinit | Roel Spilker | |
Conflicts: src/core/lombok/javac/handlers/HandleGetter.java | |||
2010-11-11 | @Getter(lazy=true) support for javac | Roel Spilker | |
2010-11-11 | trivial - removed some unused imports | Reinier Zwitserloot | |