Re: How to create property/getter/setter methods for JavaFX property using NB 22

2024-06-06 Thread Steven Yi
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() { >

Re: How to create property/getter/setter methods for JavaFX property using NB 22

2024-06-06 Thread PavelTurk
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();

Re: How to create property/getter/setter methods for JavaFX property using NB 22

2024-06-06 Thread Will Hartung
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

Re: How to create property/getter/setter methods for JavaFX property using NB 22

2024-05-07 Thread Sean Carrick
PavelTurk, Actually, the only difference between the getters/setters in your two messages are the content of the getters/setters and the parameter to the setter. NB gives you the skeleton, which you then edit to your needs... Once you insert the getters/setters through the Source...Insert Code (A

Re: How to create property/getter/setter methods for JavaFX property using NB 22

2024-05-07 Thread PavelTurk
Hi Tom, Thank you for your reply. But I think you didn't pay attention to my example. Please, read it and you will understand that it is only about JavaFX properties. To make it clear, this is NOT what I need:     public StringProperty getTest() {     return test;     }     public void set

Re: How to create property/getter/setter methods for JavaFX property using NB 22

2024-05-07 Thread Thomas Wolf
The solution doesn’t really have anything to do with Java FX. Put your cursor where you want to put the getter/setter methods and then right-click menu->Insert Code… and pick creation of getter/setter methods. Tom > On May 7, 2024, at 7:50 AM, PavelTurk wrote: > > Hello all, > > Could anyo

How to create property/getter/setter methods for JavaFX property using NB 22

2024-05-07 Thread PavelTurk
Hello all, Could anyone say how create property/getter/setter methods for JavaFX property? For example, if I have:     private StringProperty test = new SimpleStringProperty(); I want NB to generate:     public StringProperty testProperty() {     return this.test;     }     public String