You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
574 B
44 lines
574 B
/*
|
|
* Copyright (c) 1995, 2004, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
package java.awt;
|
|
|
|
/**
|
|
* The super class of all menu related containers.
|
|
*
|
|
* @author Arthur van Hoff
|
|
*/
|
|
|
|
public interface MenuContainer {
|
|
Font getFont();
|
|
void remove(MenuComponent comp);
|
|
|
|
/**
|
|
* @deprecated As of JDK version 1.1
|
|
* replaced by dispatchEvent(AWTEvent).
|
|
*/
|
|
@Deprecated
|
|
boolean postEvent(Event evt);
|
|
}
|