- java.lang.Object
-
- java.awt.MenuComponent
-
- All Implemented Interfaces:
- Serializable
public abstract class MenuComponent extends Object implements Serializable
The abstract classMenuComponent
is the superclass of all menu-related components. In this respect, the classMenuComponent
is analogous to the abstract superclassComponent
for AWT components.Menu components receive and process AWT events, just as components do, through the method
processEvent
.- Since:
- JDK1.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description protected class
MenuComponent.AccessibleAWTMenuComponent
Inner class ofMenuComponent
used to provide default support for accessibility.
-
Constructor Summary
Constructors Constructor and Description MenuComponent()
Creates aMenuComponent
.
-
Method Summary
Methods Modifier and Type Method and Description void
dispatchEvent(AWTEvent e)
Delivers an event to this component or one of its sub components.AccessibleContext
getAccessibleContext()
Gets theAccessibleContext
associated with thisMenuComponent
.Font
getFont()
Gets the font used for this menu component.String
getName()
Gets the name of the menu component.MenuContainer
getParent()
Returns the parent container for this menu component.java.awt.peer.MenuComponentPeer
getPeer()
Deprecated.As of JDK version 1.1, programs should not directly manipulate peers.protected Object
getTreeLock()
Gets this component's locking object (the object that owns the thread sychronization monitor) for AWT component-tree and layout operations.protected String
paramString()
Returns a string representing the state of thisMenuComponent
.boolean
postEvent(Event evt)
Deprecated.As of JDK version 1.1, replaced bydispatchEvent
.protected void
processEvent(AWTEvent e)
Processes events occurring on this menu component.void
removeNotify()
Removes the menu component's peer.void
setFont(Font f)
Sets the font to be used for this menu component to the specified font.void
setName(String name)
Sets the name of the component to the specified string.String
toString()
Returns a representation of this menu component as a string.
-
-
-
Constructor Detail
-
MenuComponent
public MenuComponent() throws HeadlessException
Creates aMenuComponent
.- Throws:
HeadlessException
- ifGraphicsEnvironment.isHeadless
returnstrue
- See Also:
GraphicsEnvironment.isHeadless()
-
-
Method Detail
-
getName
public 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)
-
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()
-
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
-
getPeer
@Deprecated public java.awt.peer.MenuComponentPeer getPeer()
Deprecated. As of JDK version 1.1, programs should not directly manipulate peers.
-
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(java.awt.Font)
-
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.Some platforms may not support setting of all font attributes of a menu component; in such cases, calling
setFont
will 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:
getFont()
,Font.getAttributes()
,TextAttribute
-
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.
-
postEvent
@Deprecated public boolean postEvent(Event evt)
Deprecated. 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
-
dispatchEvent
public final void dispatchEvent(AWTEvent e)
Delivers an event to this component or one of its sub components.- Parameters:
e
- the event
-
processEvent
protected void processEvent(AWTEvent e)
Processes events occurring on this menu component.Note that if the event parameter is
null
the behavior is unspecified and may result in an exception.- Parameters:
e
- the event- Since:
- JDK1.1
-
paramString
protected String paramString()
Returns 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
-
toString
public String toString()
Returns a representation of this menu component as a string.
-
getTreeLock
protected final 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
-
getAccessibleContext
public AccessibleContext getAccessibleContext()
Gets theAccessibleContext
associated with thisMenuComponent
. The method implemented by this base class returnsnull
. Classes that extendMenuComponent
should implement this method to return theAccessibleContext
associated with the subclass.- Returns:
- the
AccessibleContext
of thisMenuComponent
- Since:
- 1.3
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/awt/MenuComponent.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.