aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2014-02-05Fix for issue 631. Martin, thanks for the contribution.Roel Spilker
2014-02-04#471: @SneakyThrows should work in NetBeansJan Lahoda
2014-01-31[configuration] Added first automated test for the configuration framework. ↵Roel Spilker
For now, it fails.
2014-01-23[configuration] Small improvements to the command line appRoel Spilker
2014-01-23[#585] Copying of javadoc to getters / setters / withers woudl copy ↵Reinier Zwitserloot
non-relevant sections too.
2014-01-21Issue 630: Several small documentation fixed for LogRoel Spilker
2014-01-21[configuration] Extended the configuration app to display the resulting ↵Roel Spilker
configuration for a path and have 'blame'. Removed the PrintConfiguration annotation and handlers. Separated the parsing and the interpreting.
2014-01-20[configuration] Copy less lists during resolvingRoel Spilker
2014-01-20[configuration] Code cleanupRoel Spilker
2014-01-20[configuration] Improved descriptions of configuration keysRoel Spilker
2014-01-20[configuration] ConfigurationKeysLoader now caches.Reinier Zwitserloot
2014-01-20[configuration] Added all the @Accessors stuff as a configuration key.Reinier Zwitserloot
[refactor] Merged TransformationsUtil and HandlerUtil
2014-01-20[configuration] ConfigurationKey now has a descriptionRoel Spilker
2014-01-19Issue 625: use (even) better primes for hashcodesRoel Spilker
2014-01-19[configuration] added a service-loader based way to load ConfigurationKeys, ↵Reinier Zwitserloot
so that third party additions can add their own.
2014-01-19[trivial] added test for logger config keys.Reinier Zwitserloot
2014-01-19[configuration] added facilities to override conf file resolution for test ↵Reinier Zwitserloot
cases, and added first tests to test implementations of configuration-based stuff (FlagUsages, specifically). Error reporter has been refactored.
2014-01-19[configuration] Initial setup for configuration appRoel Spilker
2014-01-19[configuration] Move the responsibility to stop bubbling to the iteratorRoel Spilker
2014-01-19[configuration] only allow a keyname to be registered onceRoel Spilker
2014-01-19[configuration] Make sure the ConfigurationKeys class is initializedRoel Spilker
2014-01-18[configuration] Moved ALL ConfigurationKey constants into ↵Reinier Zwitserloot
'ConfigurationKeys'; that bug where fields in annotation defs causes issues is too endemic to try and work around these.
2014-01-18[configuration] The 'getAbsoluteFileLocation()' addition to EclipseAST did ↵Reinier Zwitserloot
not work in ECJ; now it does.
2014-01-18[configuration] [snippet] Removed the 'getProject' method; this doesn't even ↵Reinier Zwitserloot
exist on ECJ.
2014-01-18Moved NonNull's FLAG_USAGE ConfigurationKey definition to ConfigurationKeys ↵Reinier Zwitserloot
to work around bugs with putting fields in annotation declarations in many versions of JDK7 and all of JDK6's versions.
2014-01-18[configuration] implementations for log's log.any.fieldIsStatic config.Reinier Zwitserloot
2014-01-18[configuration] implementation of flagUsage for all handlers.Reinier Zwitserloot
2014-01-18[configuration] Reduced the range around which all already flagged ↵Reinier Zwitserloot
errors/warnings are removed (javac/delombok only) when using onMethod / onConstructor / onParam. Useful for adding warnings such as lombok configuration 'flag usages'.
2014-01-18[configuration] initial batch of configuration keys, primarily for flag usages.Reinier Zwitserloot
2014-01-17[configuration] Removed type parameter from ConfigurationSource.ResultRoel Spilker
2014-01-17[configuration] More strict naming rules for keyNames:Roel Spilker
- may contain letters, digits, minus signs, underscores and periods - must start with a letter, minus sign or underscore - may not end with a period or minus sign the rules about the periods are for possible future wildcard/globbing enhancements
2014-01-17Close the outputstream if it is a file after printing the ASTRoel Spilker
2014-01-17[configuration] Added @PrintConfiguration to print the combined interpreted ↵Roel Spilker
configuration for a certain java file, improved problem reporting
2014-01-15post-release version bumpReinier Zwitserloot
2014-01-15pre-release version bumpReinier Zwitserloot
2014-01-15added package-infos to lots of packages, updated the javadoc in these, and ↵Reinier Zwitserloot
made lots of private/package private methods 'public' in packages that aren't actually public API. Tumi asked for this, and I can imagine this is useful for others who are hacking add-ons to lombok. The package-info files clarify that we aren't committing to long-term stability of anything except the stuff directly in the lombok package, lombok.experimental, and lombok.extern.
2014-01-15[configuration] Implement LombokConfiguration (using the CONSOLE error reporter)Roel Spilker
2014-01-15[configuration] Pass the ConfigurationErrorReporterFactory as a parameter ↵Roel Spilker
instead of a field.
2014-01-15[configuration] Use URI in the API instead of files. Null results in an ↵Roel Spilker
empty Iterable. Some improvements on the time-out code
2014-01-15[configuration] Use the file system to look for 'lombok.config' files and ↵Roel Spilker
parse those and cache the results
2014-01-15[configuration] Add option 'stop-bubbling=true' to a lombok.config file to ↵Roel Spilker
prevent the system from going up the directory tree to find more config files
2014-01-15#627: Fix for refactoring when @Getter(lazy=true)Tumi
When if in NB Editor, just make the getter available (lazy stuff will be created when compiling). The inNetbeansEditor test is made after all the validations are made to the annotated field, and generates a regular getter for validations, Naviagator and autocompletion.
2014-01-14[#626] introduction of formatting options triggered a longer standing bug ↵Reinier Zwitserloot
about wonky timing on replacing Options with LombokOptions, causing javac to complain about not recognizing i.e. a Getter annotation when using it more than once in a file.
2014-01-09[configuration] Bubbling now worksRoel 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.
2014-01-09Added code to NOT add @SuppressWarnings to things if a @SuppressWarnings is ↵Reinier Zwitserloot
already there. Lombok itself can't ever do that anyway (we don't add @SW except to things we just generated fresh), but some lombok extension builders do, and this helps them.
2014-01-02591: setting positions for parameters even when running in NB editor, to ↵Jan Lahoda
avoid problems in javac's Flow.
2013-12-21[configuration] Implemented the StringResolverRoel Spilker
2013-12-19Added flag PARAMETER to the generated parameters.Roel Spilker
2013-12-18[configuration] ongoing work on the typing and resolvingRoel Spilker