Eclipse Builder implementation finished. Tests need fleshing out though.

This commit is contained in:
Reinier Zwitserloot
2013-06-16 13:20:54 +02:00
parent 2d76b1d22d
commit 648c3eeee6
9 changed files with 391 additions and 59 deletions
@@ -0,0 +1,7 @@
import java.util.List;
import lombok.experimental.Builder;
class BuilderComplex {
@Builder
private static <T extends Number> void testVoidWithGenerics(T number, int arg2, String arg3, BuilderComplex selfRef) {}
}