1. /*
  2. * @(#)MenuContainer.java 1.12 00/02/02
  3. *
  4. * Copyright 1995-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 java.awt;
  11. /**
  12. * The super class of all menu related containers.
  13. *
  14. * @version 1.12, 02/02/00
  15. * @author Arthur van Hoff
  16. */
  17. public interface MenuContainer {
  18. Font getFont();
  19. void remove(MenuComponent comp);
  20. /**
  21. * @deprecated As of JDK version 1.1
  22. * replaced by dispatchEvent(AWTEvent).
  23. */
  24. boolean postEvent(Event evt);
  25. }