Added full test suite for @Accessors, as well as the new rules for whether or not a method is already there so lombok shouldn't generate it (now number of parameters matters), and added generics testing to RequiredArgsConstructor's static constructor feature.

This commit is contained in:
Reinier Zwitserloot
2012-03-26 23:49:39 +02:00
parent 7ddafc0fe5
commit e98d226cfb
11 changed files with 118 additions and 15 deletions
@@ -17,4 +17,8 @@
@lombok.NoArgsConstructor class NoArgsConstructor1 {
int x;
String name;
}
}
@lombok.RequiredArgsConstructor(staticName="of") class RequiredArgsConstructorStaticNameGenerics<T extends Number> {
final T x;
String name;
}