mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 18:23:13 +00:00
14 lines
266 B
Java
14 lines
266 B
Java
public class DelegateGenerics<T> {
|
|
@lombok.experimental.Delegate
|
|
I1<T> target;
|
|
}
|
|
|
|
interface I1<T> extends I2<T, Integer, String> {
|
|
}
|
|
interface I2<A, T, I> extends I3<Integer, I, A> {
|
|
}
|
|
interface I3<T, I, A> {
|
|
public T t(T t);
|
|
public I i(I a);
|
|
public A a(A a);
|
|
} |