1. /*
  2. * @(#)MenuContainer.java 1.14 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.awt;
  8. /**
  9. * The super class of all menu related containers.
  10. *
  11. * @version 1.14, 01/23/03
  12. * @author Arthur van Hoff
  13. */
  14. public interface MenuContainer {
  15. Font getFont();
  16. void remove(MenuComponent comp);
  17. /**
  18. * @deprecated As of JDK version 1.1
  19. * replaced by dispatchEvent(AWTEvent).
  20. */
  21. boolean postEvent(Event evt);
  22. }