mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 18:23:24 +00:00
12 lines
293 B
Java
12 lines
293 B
Java
import lombok.experimental.Delegate;
|
|
|
|
class DelegateWithVarargs {
|
|
@Delegate private Bar bar;
|
|
|
|
private interface Bar {
|
|
void justOneParameter(int... varargs);
|
|
void multipleParameters(String first, int... varargs);
|
|
void array(int[] array);
|
|
void arrayVarargs(int[]... arrayVarargs);
|
|
}
|
|
} |