mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 01:06:54 +07:00
16 lines
322 B
Java
16 lines
322 B
Java
import javafx.fxml.FXML;
|
|
import javafx.scene.control.Button;
|
|
|
|
public class InjectedControllerFields {
|
|
@FXML
|
|
private Button id1;
|
|
|
|
@FXML
|
|
private Button <warning descr="Private field 'idUnmapped' is never assigned">idUnmapped</warning>;
|
|
|
|
{
|
|
System.out.println(id1);
|
|
System.out.println(idUnmapped);
|
|
}
|
|
|
|
} |