1. /*
  2. * @(#)EventObject.java 1.9 00/02/02
  3. *
  4. * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package sunw.util;
  11. /**
  12. * FOR BACKWARD COMPATIBILITY ONLY - DO NOT USE.
  13. * <p>
  14. * This is a backwards compatibility class to allow Java Beans that
  15. * were developed under JDK 1.0.2 to run correctly under JDK 1.1
  16. * <p>
  17. * To allow beans development under JDK 1.0.2, JavaSoft delivered three
  18. * no-op interfaces/classes (sunw.io.Serializable, sunw.util.EventObject
  19. * and sunw.util.EventListener) that could be downloaded into JDK 1.0.2
  20. * systems and which would act as placeholders for the real JDK 1.1
  21. * classes.
  22. * <p>
  23. * Now under JDK 1.1 we provide versions of these classes and interfaces
  24. * that inherit from the real version in java.util and java.io. These
  25. * mean that beans developed under JDK 1.0.2 against the sunw.* classes
  26. * will now continue to work on JDK 1.1 and will (indirectly) inherit
  27. * from the approrpiate java.* interfaces/classes.
  28. *
  29. * @deprecated This is a compatibility type to allow Java Beans that
  30. * were developed under JDK 1.0.2 to run correctly under JDK 1.1. The
  31. * corresponding JDK1.1 type is java.util.EventObject
  32. *
  33. * @see java.util.EventObject
  34. */
  35. public class EventObject extends java.util.EventObject {
  36. public EventObject(Object source) {
  37. super(source);
  38. }
  39. }