Class java.awt.MenuComponent
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.awt.MenuComponent

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.

Version:
1.29, 08/21/98
Author:
Arthur van Hoff
Since:
JDK1.0

Constructor Index

 o java.awt.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()
 o getTreeLock()
Gets this component's locking object (the object that owns the thread sychronization monitor) for AWT component-tree and layout operations.
 o paramString()
Returns the parameter string representing the state of this menu component.
 o postEvent(Event)
Posts the specified event to the menu.
 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 dispatchEvent
public final void dispatchEvent(AWTEvent e)
 o getFont
public java.awt.Font getFont()
Gets the font used for this menu component.

Returns:
the font used in this menu component, if there is one; null otherwise.
Since:
JDK1.0
See Also:
setFont
 o getName
public java.lang.String getName()
Gets the name of the menu component.

Returns:
the name of the menu component.
Since:
JDK1.1
See Also:
setName(java.lang.String)
 o getParent
public java.awt.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.
Since:
JDK1.0
 o getPeer
public java.awt.peer.MenuComponentPeer getPeer()
Note: getPeer() is deprecated. As of JDK version 1.1, programs should not directly manipulate peers.

 o getTreeLock
protected final java.lang.Object getTreeLock()
Gets this component's locking object (the object that owns the thread sychronization monitor) for AWT component-tree and layout operations.

Returns:
This component's locking object.
 o paramString
protected java.lang.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.
Since:
JDK1.0
 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
Since:
JDK1.0
 o processEvent
protected void processEvent(AWTEvent e)
Processes events occurring on this menu component.

Parameters:
e - the event
Since:
JDK1.1
 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 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.
Since:
JDK1.0
See Also:
getFont
 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.
Since:
JDK1.1
See Also:
getName
 o toString
public java.lang.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
Since:
JDK1.0

All Packages  Class Hierarchy  This Package  Previous  Next  Index