Age | Commit message (Collapse) | Author |
|
http://code.google.com/p/projectlombok/issues/detail?id=155
Now all lombok generated methods are located before any other method.
|
|
their String representations.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
classpath are relevant, and the flow needs to be parse all, then enter all, then transform all, instead of parse->enter->transform sequentially for each file in isolation.
|
|
|
|
|
|
|
|
|
|
|
|
new bytecode tests in test/bytecode/src
|
|
|
|
classes, fields and methods
|
|
to compile.
|
|
|
|
|
|
it exists OR it will be generated by some other lombok annotation, addressing issue #110.
code deduplication by removing HandleData's scanning for fields, which is now no longer done; the sub-parts of Data (Getter, Setter, RequiredArgsConstructor, etc) take care of it now.
fix for class-level @Getter/@Setter, which used to go for every field. Now they skip the usual fields (static, for setters final, and $ prefixed fields).
Bugfix for @Data not recognizing that it should let field-level @Getter/@Setter take care of generating the getter/setter for multi field declarations (@Getter int x, y);
|
|
|
|
and hashCode, which isn't fully working yet, so this test still fails.
|
|
|
|
|
|
|
|
|
|
|
|
and add @SuppressWarnings for all generated fields and methods.
|
|
|
|
|
|
and 'abstract' are implied).
|
|
|
|
|
|
GetFoo prevents lombok from making a getFoo method) only occurs on eclipse, as the test passes.
|
|
|
|
|
|
|
|
- Constructor(s)
- Getters/Setters per field
- equals
- hashCode
- toString
Added first test for @Data
|
|
|
|
|
|
Added tests for SneakyThrows
|
|
|
|
delomboking a file is an idempotent operation
|
|
|
|
|
|
|