mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 18:23:24 +00:00
11 lines
208 B
Java
11 lines
208 B
Java
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);
|
|
}
|
|
} |