- /*
- * @(#)MenuContainer.java 1.14 03/01/23
- *
- * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
- * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
- */
- package java.awt;
- /**
- * The super class of all menu related containers.
- *
- * @version 1.14, 01/23/03
- * @author Arthur van Hoff
- */
- public interface MenuContainer {
- Font getFont();
- void remove(MenuComponent comp);
- /**
- * @deprecated As of JDK version 1.1
- * replaced by dispatchEvent(AWTEvent).
- */
- boolean postEvent(Event evt);
- }