mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-09 14:17:43 +00:00
BIG commit:
* re-introduction of onMethod/onConstructor/onParam * tests checking error/warnings rewritten to be more heuristic, in order to accomodate difference in messaging between java6 and java 7 * Ability to eliminate java's own output of erroneous error messages (heh); i.e. those messages that are invalidated by lombok's actions. This mechanism is used for onMethod/onConstructor/onParam * First steps to unifying a billion setGeneratedBy calls into a single visitor traversal for eclipse' HandleGetter/Setter/Constructor/Wither * To simplify 'zooming in' the tests on just a few files, added an 'accept' mechanism. * Updated copyright headers of website to 2013.
This commit is contained in:
@@ -10,6 +10,10 @@
|
||||
final int x;
|
||||
String name;
|
||||
}
|
||||
@lombok.RequiredArgsConstructor(onConstructor=@_(@Deprecated)) class RequiredArgsConstructorWithAnnotations {
|
||||
final int x;
|
||||
String name;
|
||||
}
|
||||
@lombok.AllArgsConstructor class AllArgsConstructor1 {
|
||||
final int x;
|
||||
String name;
|
||||
|
||||
Reference in New Issue
Block a user