blob: 4ea70d74b003469778f85070b0ba4f376b612343 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//platform !eclipse: Requires a 'full' eclipse with intialized workspace, and we don't (yet) have that set up properly in the test run.
import lombok.experimental.Delegate;
abstract class DelegateOnMethods {
@Delegate
public abstract Bar getBar();
public static interface Bar {
void bar(java.util.ArrayList<java.lang.String> list);
}
}
|