Support @Delegate in eclipse 2024-03

This commit is contained in:
Rawi01
2024-03-12 22:12:22 +01:00
committed by Roel Spilker
parent 98cdf67ed6
commit 3b20b70363
6 changed files with 112 additions and 6 deletions
@@ -0,0 +1,9 @@
package pkg;
import lombok.experimental.Delegate;
public class DelegateModel {
@Delegate
private Runnable run;
}