Skip to content

Instantly share code, notes, and snippets.

@dmpe
Created August 2, 2013 16:17
Show Gist options
  • Save dmpe/6141189 to your computer and use it in GitHub Desktop.
Save dmpe/6141189 to your computer and use it in GitHub Desktop.
final TimerTask messageLabelStrengthTimerTask = new TimerTask() {
@Override
public void run() {
Platform.runLater(new Runnable() {
@Override
public void run() {
rootGroup.getChildren().remove(
labelStrength);
}
});
}
};
new Timer().schedule(messageLabelStrengthTimerTask, 2500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment