PavelTurk
PavelTurk
Run the following code: ``` public class JavaFxTest7 extends Application { @Override public void start(Stage stage) { Application.setUserAgentStylesheet(new Dracula().getUserAgentStylesheet()); var items = FXCollections.observableArrayList(List.of("a", "b")); var combobox = new ComboBox(); combobox.setItems(items);...
This is code: ``` public class JavaFxTest7 extends Application { @Override public void start(Stage stage) { Application.setUserAgentStylesheet(new Dracula().getUserAgentStylesheet()); var comboBox = new ComboBox(); comboBox.setEditable(true); comboBox.setItems(FXCollections.observableArrayList(List.of("first", "second"))); comboBox.pseudoClassStateChanged(Styles.STATE_DANGER, true); Scene scene...
I need to set background color for selected but not focused table row. This is my java code: ``` public class JavaFxTest10 extends Application { private static record Student (int...
This is my code: ```java public class JavaFxTest8 extends Application { @Override public void start(Stage primaryStage) { var codeArea = new CodeArea("Some text is here."); var button1 = new Button("Jmi");...
This is my java code: ``` public class JavaFxTest8 extends Application { @Override public void start(Stage primaryStage) { var text = """ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb cccccccccccccccccccccccccccccccccccccccccccc dddddddddddddddddddddddddddddddddddddddddddd eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee """; var codeArea...
Let's suppose I have `var postion = this.textArea.getCaretPosition();`. Could anyone say how I can get the paragraph/column position from `position`?
Code building fails on Ubuntu 20.04.3 ``` pavel@pavel-home:~/Temp$ git clone https://github.com/FXMisc/RichTextFX Cloning into 'RichTextFX'... remote: Enumerating objects: 14225, done. remote: Counting objects: 100% (758/758), done. remote: Compressing objects: 100% (337/337),...
### Apache NetBeans version Apache NetBeans 22 ### What happened NB formats code in a wrong way when annotation is used for function return type. ### Language / Project Type...
### Description Unfortunately it is very often when NB doesn't see serious changes in code. For example, there is a `Project A` that depends on `Project B`. `Project A` is...
### Description Using Alt+Insert we can generate different code - constructors, getters, setters etc. I suggest to let user choose what access modifier will be used for generated code. For...