fully tested the HandleWither impl for eclipse.

This commit is contained in:
Reinier Zwitserloot
2012-08-06 21:26:55 +02:00
parent 87f763a94c
commit 8ca3ddaa53
18 changed files with 270 additions and 21 deletions
@@ -1,8 +1,9 @@
class WitherWithGenerics<T, J extends T, L extends java.lang.Number> {
@lombok.experimental.Wither J test;
@lombok.experimental.Wither java.util.List<L> test2;
@lombok.experimental.Wither java.util.List<? extends L> test3;
int $i;
public WitherWithGenerics(J test, java.util.List<L> test2) {
public WitherWithGenerics(J test, java.util.List<L> test2, java.util.List<? extends L> test3) {
}
}