There's an old plugin for this I used back in the day:
https://github.com/rterp/JavaFxPropertyHelperNBPlugin
On Thu, Jun 6, 2024 at 1:53 PM Will Hartung wrote:
>
> JavaFX properties look like this:
>
> StringPrroperty nameProperty = new SimpleStringProperty();
>
> public String getName() {
>
Will Hartung,
If you work with JavaFX, then the following issue can be interesting for you -
https://github.com/apache/netbeans/issues/7364
Best regards, Pavel
On 6/6/24 8:53 PM, Will Hartung wrote:
JavaFX properties look like this:
StringPrroperty nameProperty = new SimpleStringProperty();
JavaFX properties look like this:
StringPrroperty nameProperty = new SimpleStringProperty();
public String getName() {
return nameProperty.get();
}
public void setName(String name) {
nameProperty.set(name);
}
public StringProperty nameProperty() {
return nameProperty;
}
There's also