aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-05-17ecj: SuperBuilderBasic test passes (removed superconstructor calls)Jan Rieke
2018-05-17ecj: remaining type args for non-generic class buildersJan Rieke
2018-05-15[new-style include/exclude] added new-style include/exclude support to ↵Reinier Zwitserloot
EqualsAndHashCode.
2018-05-14Merge pull request #1680 from pbi-qfs/gradleIncrementalReinier Zwitserloot
Allow gradle incremental compiling with lombok
2018-05-14[annotation based ToString] hey.. we have annotation based ToString now, ↵Reinier Zwitserloot
where you can include/exclude fields by annotating the fields.
2018-05-14ecj: method body for self(); type args for BuilderImpl extends clauseJan Rieke
2018-05-11ecj: setter methods now return self()Jan Rieke
2018-05-11ecj: type params for constructor, abstract builder class, self methodJan Rieke
2018-05-06ecj: builder generics [WIP]Jan Rieke
2018-05-03Allow gradle incremental compiling with lombok in annotation processor pathPascal Bihler
Fixes issue #1580
2018-04-27fixed generation problem caused by reusing expressionsJan Rieke
2018-04-23Allow onMethod and onParam in @Getter and @Setter if it is put on a typeRoel Spilker
2018-04-23[bugfix] generics on inner classes whose outer type has generics, when the ↵Reinier Zwitserloot
outer type is an interface, caused bugs in ecj.
2018-04-23[bugfix] onMethod_ in javac was broken; javac would throw an ↵Reinier Zwitserloot
IllegalArgumentException.
2018-04-23move javadoc to public methodRoel Spilker
2018-04-23Merge pull request #1670 from kdaemonv/hotfix-1Reinier Zwitserloot
Revert some changes from f540335 which break the build
2018-04-23fix typo in EclipseProductLocationProvider.javakdaemonv
change NotAnIdeLocationException to CorruptedIdeLocationException in javadoc for private method create0(String path)
2018-04-21first try for Eclipse handler [WIP]Jan Rieke
2018-04-20move ClassLiteral and FieldSelect from ↵Dmitry Kurelchuk
core/lombok/core/AnnotationValues.java to utils/lombok/core/
2018-04-17[Fixes #1656] Lombok would silently do the wrong thing when using references ↵Reinier Zwitserloot
to `public static final String` fields, instead of actual string literals, there where you can specify strings in lombok annotation parameters, such as `@ToString(of = MyClass.CONSTANT_FIELD)`. We can’t really fix it, but at least now lombok will error when you do that and describe in detail what’s going wrong.
2018-04-16let @SuperBuilder's toString() call super.toString()Jan Rieke
2018-04-16avoid name clashes with generics on the annotated classJan Rieke
2018-04-17fix #1657: EmptyLombokFileObject: file:// URI must not contain authority part.Takuya Murakami
fix degrade of #1617, the file URI must starts with 'file:///', not 'file://'.
2018-04-15use superclass generics for abstract builder class' extends clauseJan Rieke
2018-04-15consider generics on the annotated class and potential superclassJan Rieke
2018-04-14revert changes to HandleBuilder (everything is in HandleSuperBuilder)Jan Rieke
2018-04-14adjusted expected result of test caseJan Rieke
2018-04-14include superclass when referring to parent builderJan Rieke
example: "ChildBuilder extends Parent.ParentBuilder"
2018-04-10correct return type and statement for @SingularJan Rieke
2018-04-10@Override for overridden methodsJan Rieke
2018-04-10apply generics on builder extends clause; fixed builder name generationJan Rieke
2018-04-10[delombok] Added an option to emit only changed files.Reinier Zwitserloot
2018-04-10Potential fix for #1604Roel Spilker
2018-04-10Merge pull request #886 from balta3/annotationarraysReinier Zwitserloot
implemented support for annotation arrays as annotation attributes in javac
2018-04-09Update delombok cmd example. Fixes #1643Roel Spilker
2018-04-05build class names not configurable any more; removed toBuilderJan Rieke
2018-04-05wildcards for the constructor parameterJan Rieke
2018-04-05wildcards for the builder() methodJan Rieke
2018-04-05more generics; return getInstance() instead of thisJan Rieke
2018-04-05generics for the Builder class; generate abstract methodsJan Rieke
2018-04-05add javac handlerJan Rieke
Conflicts: src/core/lombok/experimental/SuperBuilder.java
2018-04-05Merge branch 'cheelio-FieldNameConstants'Reinier Zwitserloot
2018-04-05[fieldNameConstants] code review, docs, tests, fixup.Reinier Zwitserloot
2018-04-04Merge branch 'FieldNameConstants' of https://github.com/cheelio/lombok into ↵Reinier Zwitserloot
cheelio-FieldNameConstants
2018-04-04Merge pull request #1626 from victorwss/masterReinier Zwitserloot
Fix for #1617.
2018-04-04Merge pull request #1627 from nuessgens/masterReinier Zwitserloot
Partially fix for "A save participant caused problems" with Eclipse
2018-04-04Merge pull request #1639 from tmurakam/feature/1632-jdk11Reinier Zwitserloot
fix #1632: JavacAST: use new Log method for jdk11
2018-04-04introduction of `@SuperBuilder` and a testcase.Reinier Zwitserloot
2018-03-31fix #1632: JavacAST: use new Log method for jdk11Takuya Murakami
Some methods of AbstractLog are removed in jdk11. Fix JavacAST.Jdk9Plus to use new log methods added from jdk9.
2018-03-29[trivial] build script fix for website-only: It was adding an & to the ↵Reinier Zwitserloot
full version string every call.