aboutsummaryrefslogtreecommitdiff
path: root/usage_examples
AgeCommit message (Collapse)Author
2014-05-21Fix website re. DelegateRoel Spilker
2014-03-26[i659] suppression of @ConstructorProperties should use config instead. Also ↵Roel Spilker
modified all onX examples to use two underscores.
2014-03-26[i660] canEqual is now protected instead of public.Roel Spilker
Also fixed the total lack of canEqual in the usage examples.
2014-02-10[deps] Updated eclipse deps to 3.9 tree. This also enables testing java7 ↵Reinier Zwitserloot
features on ecj. [Log] updated naming for @Log (topic= instead of mchmulder's 'value').
2014-02-08Explained how to customise the category of the generated Log(ger)Maarten Mulders
2014-01-21Added extra example to the online documentation for @LogRoel Spilker
2014-01-21Issue 630: Several small documentation fixed for LogRoel Spilker
2014-01-19Issue 625: use (even) better primes for hashcodesRoel Spilker
2014-01-09[#625] Instead of '31' as a prime number for hashCode(), use something else. ↵Reinier Zwitserloot
31, probably owing to its inclusion in Effective Java, is overused, as proven by Maaartinus in issue 625. Switching to 277 instead. Also, 1231/1237 pair used for booleans has been replaced by 2591/2609.
2013-08-28fixed a code typo in the getterlazy usage example. Credits to Adam Brewster ↵Reinier Zwitserloot
for spotting it!
2013-07-08Fixed value's snippet integration (it hadn't been updated yet now that Value ↵Reinier Zwitserloot
has moved from experimental into core).
2013-07-08Support for javadoc copying in Getter/Setter generation for javac, as well ↵Reinier Zwitserloot
as updates to all relevant documentation
2013-07-07updated docs for new desugaring for getter(lazy=true)Reinier Zwitserloot
2013-06-18javac builder implementation. Passes all tests.Reinier Zwitserloot
Added toString() impl for builders in both eclipse and javac. Added all documentation, though it'll need some reviewing.
2013-05-31Added @NonNull on parameters feature (issue 514),Reinier Zwitserloot
including docs and changelog.
2013-02-18Changed @Value to no longer imply @Wither. Usually you want onlyReinier 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-18whoops, belated push and fixes to the documentation of onXReinier Zwitserloot
2012-11-17Added 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-08-13prettying up the pre/post examples for FieldDefaults and ExtensionMethodReinier Zwitserloot
2012-08-13Documentation for @Value, @FieldDefaults, @WitherReinier Zwitserloot
2012-06-25tiny typo in post usage example of Delegate in feature docs.Reinier Zwitserloot
2012-06-18Added documentation for @ExtensionMethod featureReinier Zwitserloot
2012-04-29Updated the after-delombok images to the latest state.Roel Spilker
2012-03-27fixes for 'ant website' build target. Also fixing some errors in javadoc.Reinier Zwitserloot
2012-03-27Finished up documentation for Accessors.Reinier Zwitserloot
2011-08-15Removed support for onMethod, onParam and onConstructor due to javac7 type ↵Roel Spilker
incapabilities. Issue #251
2011-07-14The site's lombok v. vanilla java examples included lombok annotations on ↵Reinier Zwitserloot
the vanilla java side. Fabrizio Guidici found this one.
2011-06-29A 'final' was missing in the vanilla version of the 'val' usecase.Reinier Zwitserloot
2011-06-22fixed type mismatch in lazy getter example (issue 223)peichhorn
note: this example shows how lazy getter would work once issue 160 is no more
2011-05-09Updated Delegate docs now that we've changed how it works (it no longer ↵Reinier Zwitserloot
detects that you've implemented a few to-be delegated methods yourself).
2011-02-28Updates examples to use Guice and hibernate validators.grootjans
2011-02-28Issue 192: Add documentation for onMethod=, onParam, onConstructorgrootjans
still have to make a minor edit in the pre/post files
2011-02-07Added documentation for @Delegate. This fixes issue 189grootjans
2011-01-31Issue 182: Cleanup documentation should include null-checkRoel Spilker
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-29Added '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-18Added 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-06Updated documentation on @Log and moved them all to lombok.extern.*Roel Spilker
2010-11-06Updated website documentation to include @LogRoel Spilker
2010-07-21Added using .getX() instead of using .x in equals, hashCode, and toString. ↵Reinier Zwitserloot
Also updated changelog as well as the docs. Also updated usage examples for @EqualsAndHashCode, @ToString, and @Data, which also contained some other minor issues (such as missing this. qualifiers). Still to do is to detect that getters don't exist _yet_ but will later due to @Getter or @Data.
2010-07-20Added documentation for @RequiredArgsConstructor, @NoArgsConstructor, ↵Reinier Zwitserloot
@AllArgsConstructor, and also how these generate @ConstructorProperties annotations. Also updated @Getter and @Setter's documentation to explain their new class-level feature, and updated @Data's description to highlight how @Data is now truly nothing more than the combination of @RequiredArgsConstructor, @EqualsAndHashCode, @ToString, @Getter, and @Setter.
2009-07-28Added website feature documentation for @ToString and @EqualsAndHashCode, ↵Reinier Zwitserloot
and modified the docs for @Data to refer to the docs of these new annotations. The build script for the website has been updated to clean out the website build dir first, so files that used to exist but have now been tossed are no longer there. There's also a special website-no-videos target which builds a website deployable without the videos. This makes the upload a lot faster if the videos haven't changed.
2009-07-18Added feedback from r.spilker.Reinier Zwitserloot
2009-07-18Merge branch 'master' of git@github.com:rzwitserloot/lombokReinier Zwitserloot
2009-07-18Added SneakyThrows which finishes the documentation for the features pages.Reinier Zwitserloot
2009-07-18Changed the order of name and age in the toString methodRoel Spilker
2009-07-18Added text for the Synchronized annotation to the features pages. Also did ↵Reinier Zwitserloot
some fixes in regards to whitespacing (some fancy footwork in regards to white-space: pre).
2009-07-18Added Cleanup features text.Reinier Zwitserloot
2009-07-17Added documentation for the @Data annotation. Also fixed whitespace issues ↵Reinier Zwitserloot
in the snippet views, and removed a debug print in one of the snippets.
2009-07-12Example for the @Data annotation.Reinier Zwitserloot