java.lang.Object
java.awt.MenuComponent
- All Implemented Interfaces:
- 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.
- Since:
- 1.0
- See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionprotected classInner class ofMenuComponentused to provide default support for accessibility.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal voidDelivers an event to this component or one of its sub components.Gets theAccessibleContextassociated with thisMenuComponent.getFont()Gets the font used for this menu component.getName()Gets the name of the menu component.Returns the parent container for this menu component.protected final ObjectGets this component's locking object (the object that owns the thread synchronization monitor) for AWT component-tree and layout operations.protected StringReturns a string representing the state of thisMenuComponent.booleanDeprecated.protected voidProcesses events occurring on this menu component.voidRemoves the menu component's peer.voidSets the font to be used for this menu component to the specified font.voidSets the name of the component to the specified string.toString()Returns a representation of this menu component as a string.
- 
Constructor Details- 
MenuComponentCreates aMenuComponent.- Throws:
- HeadlessException- if- GraphicsEnvironment.isHeadlessreturns- true
- See Also:
 
 
- 
- 
Method Details- 
getNameGets the name of the menu component.- Returns:
- the name of the menu component
- Since:
- 1.1
- See Also:
 
- 
setNameSets the name of the component to the specified string.- Parameters:
- name- the name of the menu component
- Since:
- 1.1
- See Also:
 
- 
getParentReturns the parent container for this menu component.- Returns:
- the menu component containing this menu component,
                 or nullif this menu component is the outermost component, the menu bar itself
 
- 
getFontGets the font used for this menu component.- Returns:
- the font used in this menu component, if there is one;
                  nullotherwise
- See Also:
 
- 
setFontSets 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.Some platforms may not support setting of all font attributes of a menu component; in such cases, calling setFontwill have no effect on the unsupported font attributes of this menu component. Unless subcomponents of this menu component specify a different font, this font will be used by those subcomponents if supported by the underlying platform.- Parameters:
- f- the font to be set
- See Also:
 
- 
removeNotifypublic 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.
- 
postEventDeprecated.As of JDK version 1.1, replaced bydispatchEvent.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
- Returns:
- unconditionally returns false
 
- 
dispatchEventDelivers an event to this component or one of its sub components.- Parameters:
- e- the event
 
- 
processEventProcesses events occurring on this menu component.Note that if the event parameter is nullthe behavior is unspecified and may result in an exception.- Parameters:
- e- the event
- Since:
- 1.1
 
- 
paramStringReturns a string representing the state of thisMenuComponent. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not benull.- Returns:
- the parameter string of this menu component
 
- 
toStringReturns a representation of this menu component as a string.
- 
getTreeLockGets this component's locking object (the object that owns the thread synchronization monitor) for AWT component-tree and layout operations.- Returns:
- this component's locking object
 
- 
getAccessibleContextGets theAccessibleContextassociated with thisMenuComponent. The method implemented by this base class returnsnull. Classes that extendMenuComponentshould implement this method to return theAccessibleContextassociated with the subclass.- Returns:
- the AccessibleContextof thisMenuComponent
- Since:
- 1.3
 
 
- 
dispatchEvent.