Advertisement
FabioHouse

Time.java

Oct 31st, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. package time;
  2.  
  3. public class Time{
  4. public long partenza;
  5. public long fine;
  6.  
  7. public Time(){
  8. partenza = 0;
  9. }
  10.  
  11. public void start(){
  12. partenza = System.currentTimeMillis ();
  13. }
  14.  
  15. public long end(){
  16. long fine;
  17. fine = System.currentTimeMillis ();
  18. return fine - partenza - this.tempoTrascorso;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement