Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 606 Bytes

README.md

File metadata and controls

30 lines (26 loc) · 606 Bytes

FxProperty

Generated JavaFX property accessors

Original

class IntegerPropertyTest {
    @FxProperty
    IntegerProperty field = new SimpleIntegerProperty(this, "field");
}

Transformed

class IntegerPropertyTest {
    @FxProperty
    IntegerProperty field = new SimpleIntegerProperty(this, "field");
    
    public Integer getField() {
        return field.getValue();
    }
    
    public IntegerProperty fieldProperty() {
        return field;
    }
    
    public void setField(Integer field) {
        this.field.set(field);
    }
}