mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-23 08:25:23 +00:00
9 lines
118 B
Java
9 lines
118 B
Java
package pkg;
|
|
|
|
import lombok.experimental.Delegate;
|
|
|
|
public class DelegateModel {
|
|
|
|
@Delegate
|
|
private Runnable run;
|
|
} |