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