mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +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>;
|
|
} |