This a minor release of the JavaFxPropertyHelper NetBeans plugin, and will now follow JavaFX best practices by marking any get/set methods as final.
This plugin would create the following methods:
public final String getName() {
return name.get();
}
public final void setName( String value ) {
name.set(value);
}
public final StringProperty nameProperty() {
return name;
}
The latest release version can either be download from github:
Or the NetBeans plug-in portal page.
Pingback: Java desktop links of the week, December 14 « Jonathan Giles