Skip to content

matthewweis/fxproperty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
    }
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages