#1976. A handlers' order has been changed. The javac's HandleDelegate generates code before the HandleVal.

This commit is contained in:
Bulgakov Alexander
2019-04-26 22:10:34 +03:00
parent 150be0a186
commit ce0a09177e
5 changed files with 162 additions and 2 deletions
@@ -0,0 +1,35 @@
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Delegate;
import lombok.val;
import java.util.function.Function;
public class ValDelegateMethodReference {
public void config() {
val column = createColumn(Entity::getValue);
}
private <V> Column<Entity, V> createColumn(Function<Entity, V> func) {
return new Column<>(func);
}
}
class Column<T, V> {
public Column(Function<T, V> vp) {}
}
class Entity {
@Delegate
private MyDelegate innerDelegate;
}
@Getter
@Setter
class MyDelegate {
private String value;
private Boolean aBoolean;
}