You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import groovy.transform.CompileStatic
import groovyx.javafx.beans.FXBindable
@CompileStatic
class Foo {
static class Bar {
@FXBindable
Object baz
}
}
Decompiled:
public class Foo implements GroovyObject {
...
public static class Bar implements GroovyObject {
private ObjectProperty bazProp;
...
public final Object getBaz() {
return ((ObjectProperty)this).getValue();
}
public final void setBaz(Object value) {
this.setValue(value);
}
...
}
...
}
So getter/setter not work :(
The text was updated successfully, but these errors were encountered:
For example:
Decompiled:
So getter/setter not work :(
The text was updated successfully, but these errors were encountered: