KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > awt > MenuContainer


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 JavaDoc getFont();
18     void remove(MenuComponent JavaDoc comp);
19
20     /**
21      * @deprecated As of JDK version 1.1
22      * replaced by dispatchEvent(AWTEvent).
23      */

24     @Deprecated JavaDoc
25     boolean postEvent(Event JavaDoc evt);
26 }
27
Popular Tags