mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
9 lines
344 B
Java
9 lines
344 B
Java
import javafx.fxml.FXML;
|
|
import javafx.scene.control.Button;
|
|
|
|
public class FxIdInSuperclass {
|
|
@FXML
|
|
private Button <warning descr="Private field 'inheritedButton' is assigned but never accessed">inheritedButton</warning>;
|
|
@FXML
|
|
private Button <warning descr="Private field 'unusedButton' is never used">unusedButton</warning>;
|
|
} |