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

2024-06-06 Thread PavelTurk
g On Tue, May 7, 2024 at 5:19 AM Sean Carrick mailto:s...@pekinsoft.com>> wrote: 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 yo

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

2024-05-07 Thread PavelTurk
ode… and pick creation of getter/setter methods. Tom On May 7, 2024, at 7:50 AM, PavelTurk wrote: 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

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

Re: NetBeans integrated terminal

2024-04-02 Thread PavelTurk
en in Java doesn't mean it can't run external processes. Look into the java API documentation on ProcessBuilder class. Tom On Apr 2, 2024, at 4:36 PM, PavelTurk wrote: Hello all. Could anyone explain how it is possible to run native application, for example, midnight commander in

NetBeans integrated terminal

2024-04-02 Thread PavelTurk
Hello all. Could anyone explain how it is possible to run native application, for example, midnight commander in NB terminal? I mean NB is a java application and as I understand it uses swing library for UI. And how  was native application made to work inside java application with swing? What i

Re: Error refactoring code

2024-04-02 Thread PavelTurk
Hi! See https://github.com/apache/netbeans/issues/3725 Best regards, Pavel On 4/2/24 6:42 PM, Tellis, Wyatt wrote: Hi, I'm trying to rename a method on a class and keep getting the following error: Module Java Refactoring threw java.lang.IllegalStateException: java.lang.NullPointerException:

Run test focused method in NB 21

2024-02-23 Thread PavelTurk
Hello all. When I do right click on test method and select `Run Focused Test Method` or `Debug Focused Test Method` I got message `No provide can handle this test method`. At the same time `Test File` and `Debug Test File` work without any problems. This is a java maven project, test framework