All Packages Class Hierarchy This Package Previous Next Index

Class java.awt.MenuComponent

java.lang.Object | +----java.awt.MenuComponent
public abstract class MenuComponent
extends Object
implements Serializable
The abstract class MenuComponent is the superclass of all menu-related components. In this respect, the class MenuComponent is analogous to the abstract superclass Component for AWT components.

Menu components receive and process AWT events, just as components do, through the method processEvent.


Constructor Index

 o MenuComponent()

Method Index

 o dispatchEvent(AWTEvent)
 o getFont()
Gets the font used for this menu component.
 o getName()
Gets the name of the menu component.
 o getParent()
Returns the parent container for this menu component.
 o getPeer()
Deprecated.
 o paramString()
Returns the parameter string representing the state of this menu component.
 o postEvent(Event)
Posts the specified event to the menu. Deprecated.
 o processEvent(AWTEvent)
Processes events occurring on this menu component.
 o removeNotify()
Removes the menu component's peer.
 o setFont(Font)
Sets the font to be used for this menu component to the specified font.
 o setName(String)
Sets the name of the component to the specified string.
 o toString()
Returns a representation of this menu component as a string.

Constructors

 o MenuComponent public MenuComponent()

Methods

 o getName public String getName()
Gets the name of the menu component.

Returns:
the name of the menu component.
See Also:
setName
 o setName public void setName(String name)
Sets the name of the component to the specified string.

Parameters:
name - the name of the menu component.
See Also:
getName
 o getParent public MenuContainer getParent()
Returns the parent container for this menu component.

Returns:
the menu component containing this menu component, or null if this menu component is the outermost component, the menu bar itself.
 o getPeer public MenuComponentPeer getPeer()
Note: getPeer() is deprecated. As of JDK version 1.1, programs should not directly manipulate peers.

 o getFont public Font getFont()
Gets the font used for this menu component.

Returns:
the font used in this menu component, if there is one; null otherwise.
See Also:
setFont
 o setFont public void setFont(Font f)
Sets the font to be used for this menu component to the specified font. This font is also used by all subcomponents of this menu component, unless those subcomponents specify a different font.

Parameters:
f - the font to be set.
See Also:
getFont
 o removeNotify public void removeNotify()
Removes the menu component's peer. The peer allows us to modify the appearance of the menu component without changing the functionality of the menu component.

 o postEvent public boolean postEvent(Event evt)
Note: postEvent() is deprecated. As of JDK version 1.1, replaced by dispatchEvent(AWTEvent).

Posts the specified event to the menu. This method is part of the Java 1.0 event system and it is maintained only for backwards compatibility. Its use is discouraged, and it may not be supported in the future.

Parameters:
evt - the event which is to take place
 o dispatchEvent public final void dispatchEvent(AWTEvent e)  o processEvent protected void processEvent(AWTEvent e)
Processes events occurring on this menu component.

Parameters:
e - the event
 o paramString protected String paramString()
Returns the parameter string representing the state of this menu component. This string is useful for debugging.

Returns:
the parameter string of this menu component.
 o toString public String toString()
Returns a representation of this menu component as a string.

Returns:
a string representation of this menu component.
Overrides:
toString in class Object

All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature