1. /*
  2. * @(#)MenuEvent.java 1.11 00/02/02
  3. *
  4. * Copyright 1997-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 javax.swing.event;
  11. import java.util.EventObject;
  12. /**
  13. * MenuEvent is used to notify interested parties that
  14. * the menu which is the event source has been posted,
  15. * selected, or canceled.
  16. * <p>
  17. * <strong>Warning:</strong>
  18. * Serialized objects of this class will not be compatible with
  19. * future Swing releases. The current serialization support is appropriate
  20. * for short term storage or RMI between applications running the same
  21. * version of Swing. A future release of Swing will provide support for
  22. * long term persistence.
  23. *
  24. * @version 1.11 02/02/00
  25. * @author Georges Saab
  26. * @author David Karlton
  27. */
  28. public class MenuEvent extends EventObject {
  29. /**
  30. * Constructs a MenuEvent object.
  31. *
  32. * @param source the Object that originated the event
  33. * (typically <code>this</code>)
  34. */
  35. public MenuEvent(Object source) {
  36. super(source);
  37. }
  38. }