Guest User

Untitled

a guest
Oct 23rd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public class Main {
  2. Timer timer = new Timer();
  3. //later on
  4. timer.schedule(new stopItNow(), 5000);
  5. //stopItNow
  6. class stopItNow extends TimerTask{
  7. public void run(){
  8. System.exit(0);
  9. }
Add Comment
Please, Sign In to add comment