aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok
AgeCommit message (Collapse)Author
2017-03-23[i1180] generate ConstructorProperties also for (package) private constructorsRoel Spilker
2017-03-23[i1329] respect configuration for field access when generating equals, ↵Roel Spilker
hashCode and toString from Data and Value
2017-03-22Added tests to check warnings/errors emitted by Builder.Default support.Reinier Zwitserloot
2017-03-22[jdk9] Workaround for a weird casting issue that shows up for singularizer ↵Roel Spilker
support.
2017-03-20Fixing issue #1201: Builder now supports defaults!Reinier Zwitserloot
2017-03-07removed the suppressConstructorProperties param.Reinier Zwitserloot
2017-03-07Fixed issue #778: problems with onX if the annotation to be added has named ↵Reinier Zwitserloot
args.
2017-02-16Fixing issue #1298: `@Builder` with recursive generics didn’t work in ↵Reinier Zwitserloot
javac/delombok.
2017-02-16Fixed versionmatching for our test framework.Reinier Zwitserloot
2017-02-10[i1274] Add outer name to type name for nested types in equals.Roel Spilker
2017-02-09[i1014] Only add lombok.Generated if it is explicitly turned onRoel Spilker
2017-01-06add `@lombok.Generated` to generated classes, methods and fieldsRoel Spilker
2016-12-05Fixes #1236: Getter(lazy=true) now emits an error when used on a transient fieldRoel Spilker
2016-12-05Fixes #1254: Value and FieldDefaults should skip static fieldsRoel Spilker
2016-11-22Merge pull request #1235 from bulgakovalexander/bugfix/builderWithTolerateRoel Spilker
Bugfix/builder with tolerate
2016-11-22Merge pull request #1231 from bulgakovalexander/bugfix/NoArgsConstructorForceRoel Spilker
fix of the issue 1228
2016-11-13fix of the issue 1230. @Tolerate not working for @Builder methods?Bulgakov Alexander
2016-11-12a initialization of variable like "var o = null;" will throw the compile ↵Bulgakov Alexander
time error "variable initializer is 'null'"
2016-11-11fix for the issue 1228. @NoArgsConstructor(force = true) fails on primitive ↵Bulgakov Alexander
arrays in Eclipse
2016-10-26The @var annotation has been moved to the experimental package.Bulgakov Alexander
Added a test of a @var variable with null initialization.
2016-10-24added supporting of @var variables. The @var annotation has the same ↵Bulgakov Alexander
functionality as the @val except 'final' modifier.
2016-10-17added supporting for @val variables inside lambdas.Bulgakov Alexander
2016-06-08add test to verify config key callSuper=call works with ValueRoel Spilker
2016-05-11add tests for the combination of Builder and Value/DataRoel Spilker
2016-05-06Added support for JBoss Logging v3.3.0-Final via @JBossLog [Issue #1103]Thomas Darimont
2016-03-07@Helper is now legal in just about every place method local classes are ↵Reinier Zwitserloot
legal. Also now no longer messes up syntax highlighting in eclipse. Still need to investigate how to improve autocomplete presence of helper methods.
2015-12-18fix issue #932: `@Delegate` would not generate varargs on javacRoel Spilker
2015-11-23[Fixes #945] wither methods for abstract classes now slightly less useless.Reinier Zwitserloot
2015-11-23[Fixes #949] accessor prefixes messed up auto-singular generation.Reinier Zwitserloot
2015-11-23[Fixes #965] Adds a config key to automatically determine the behaviour of ↵Reinier Zwitserloot
equals and hashCode generation when
2015-11-17[issue #937] Refactored the support for guava’s ImmutableTable.Reinier Zwitserloot
2015-11-17Merge branch 'master' of https://github.com/spacanowski/lombok into ↵Reinier Zwitserloot
spacanowski-master Conflicts: test/transform/resource/after-delombok/BuilderSingularGuavaListsSets.java test/transform/resource/after-ecj/BuilderSingularGuavaListsSets.java
2015-11-16Merge branch 'enriquedacostacambio-pr-builder-on-instance-methods' into ↵Reinier Zwitserloot
builderUpdate
2015-11-16Merge branch 'pr-builder-on-instance-methods' of ↵Reinier Zwitserloot
https://github.com/enriquedacostacambio/lombok into enriquedacostacambio-pr-builder-on-instance-methods Conflicts: AUTHORS src/core/lombok/Builder.java src/core/lombok/eclipse/handlers/HandleBuilder.java src/core/lombok/javac/handlers/HandleBuilder.java
2015-11-16[builder] Added clearX() functionality for `@Singular` annotations for ↵Reinier Zwitserloot
javac. Also docs and changelog.
2015-11-16[trivial] updating a new test to account for the fact that the prettyprinter ↵Reinier Zwitserloot
prints casts a bit different.
2015-11-16The bulk of the effort for a new pretty printer.Reinier Zwitserloot
2015-10-26Add tests for `@EqualsAndHashCode` for the attributes `of` and `exclude`Roel Spilker
2015-10-06New feature: FieldDefaults can now be configured to apply to _every_ file, ↵Reinier Zwitserloot
regardless of annotations.
2015-10-06Belated addendum to previous commit: The tests for `@NonNull` on parameters ↵Reinier Zwitserloot
of default methods should be restricted to java8+
2015-10-05[Fixes #807] The NonNull annotation can now be used documentary style on ↵Reinier Zwitserloot
params of abstract methods. The warning has been eliminated.
2015-10-04Added support for builder singular for Guavas ImmutableTablespc
2015-09-24[Closes #928] `@Value` no longer makes uninitialized static fields finalRoel Spilker
2015-08-16Merge branch 'force'Reinier Zwitserloot
Conflicts: doc/changelog.markdown src/core/lombok/eclipse/handlers/HandleBuilder.java
2015-08-16Merge branch 'builderClone'Reinier Zwitserloot
Conflicts: doc/changelog.markdown
2015-08-13Added new feature: @Helper including both annotations and tests.Reinier Zwitserloot
2015-07-22Support for @NoArgsConstructor(force = true).Reinier Zwitserloot
2015-07-20added javac impl of toBuilder along with test file.Reinier Zwitserloot
2015-06-25The hashCode() method now generates a magic prime instead of 0 for the hash ↵Reinier Zwitserloot
of null values; this reduces collisions.
2015-06-01When generating javadoc for setters, a @return this is added if needed.Reinier Zwitserloot