You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TimerEvent.java 374B

123456789101112131415161718192021
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package eieruhr;
  7. import java.util.EventObject;
  8. /**
  9. *
  10. * @author Apollo
  11. */
  12. public class TimerEvent extends EventObject
  13. {
  14. public TimerEvent(Object source)
  15. {
  16. super(source);
  17. }
  18. }