How to minimize the usage of static variables and objects
- by Peter Penzov
I'm trying to implement this JavaFX code where I want to call remote Java class and pass boolean flag:
final CheckMenuItem toolbarSubMenuNavigation = new CheckMenuItem("Navigation");
toolbarSubMenuNavigation.setOnAction(new EventHandler<ActionEvent>()
{
@Override
public void handle(ActionEvent e)
{
…