Created
August 2, 2013 16:17
-
-
Save dmpe/6141189 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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