Skip to content

Instantly share code, notes, and snippets.

@sharno
Created January 30, 2015 08:50
Show Gist options
  • Save sharno/b98dc6b2fb49a8bd7018 to your computer and use it in GitHub Desktop.
Save sharno/b98dc6b2fb49a8bd7018 to your computer and use it in GitHub Desktop.
@FXML
private void switchService () {
if (isRunning) {
serverController.stopService();
isRunning = false;
Platform.runLater(new Runnable() {
@Override
public void run() {
switchButton.setText("Start");
}
});
} else {
serverController.startService();
isRunning = true;
Platform.runLater(new Runnable() {
@Override
public void run() {
switchButton.setText("Stop");
}
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment