|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.MenuComponent
Safe: 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
.
Field Summary | |
(package private) AccessibleContext |
accessibleContext
|
(package private) static String |
actionListenerK
|
(package private) sun.awt.AppContext |
appContext
The AppContext of the MenuComponent . |
(package private) Font |
font
The menu component's font. |
(package private) static String |
itemListenerK
|
private String |
name
The menu component's name, which defaults to null . |
private boolean |
nameExplicitlySet
A variable to indicate whether a name is explicitly set. |
(package private) boolean |
newEventsOnly
Defaults to false . |
(package private) MenuContainer |
parent
|
(package private) java.awt.peer.MenuComponentPeer |
peer
|
private Object |
privateKey
This object is used as a key for internal hashtables. |
private static long |
serialVersionUID
|
Constructor Summary | |
MenuComponent()
Enabled: Creates a MenuComponent . |
Method Summary | |
(package private) String |
constructComponentName()
Constructs a name for this MenuComponent . |
void |
dispatchEvent(AWTEvent e)
Suppressed: |
(package private) void |
dispatchEventImpl(AWTEvent e)
|
(package private) boolean |
eventEnabled(AWTEvent e)
|
AccessibleContext |
getAccessibleContext()
Suppressed: Gets the AccessibleContext associated with
this MenuComponent . |
(package private) int |
getAccessibleIndexInParent()
Gets the index of this object in its accessible parent. |
(package private) AccessibleStateSet |
getAccessibleStateSet()
Gets the state of this object. |
(package private) Font |
getFont_NoClientCode()
|
Font |
getFont()
Enabled: Gets the font used for this menu component. |
String |
getName()
Enabled: Gets the name of the menu component. |
(package private) MenuContainer |
getParent_NoClientCode()
|
MenuContainer |
getParent()
Suppressed: Returns the parent container for this menu component. |
java.awt.peer.MenuComponentPeer |
getPeer()
Suppressed: @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. |
private static void |
initIDs()
Initialize JNI field and method IDs. |
protected String |
paramString()
Returns a string representing the state of this MenuComponent . |
boolean |
postEvent(Event evt)
Deprecated. As of JDK version 1.1, replaced by dispatchEvent(AWTEvent) . |
protected void |
processEvent(AWTEvent e)
Processes events occurring on this menu component. |
private void |
readObject(ObjectInputStream s)
Reads the menu component from an object input stream. |
void |
removeNotify()
Suppressed: Removes the menu component's peer. |
void |
setFont(Font f)
Enabled: Sets the font to be used for this menu component to the specified font. |
void |
setName(String name)
Enabled: Sets the name of the component to the specified string. |
String |
toString()
Suppressed: Returns a representation of this menu component as a string. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
transient java.awt.peer.MenuComponentPeer peer
transient MenuContainer parent
transient sun.awt.AppContext appContext
AppContext
of the MenuComponent
.
This is set in the constructor and never changes.
Font font
null
at which point a default will be used.
This defaults to null
.
setFont()
,
getFont()
private String name
null
.
getName()
,
setName()
private boolean nameExplicitlySet
true
the name will be set explicitly.
This defaults to false
.
setName()
boolean newEventsOnly
false
.
dispatchEvent()
static final String actionListenerK
static final String itemListenerK
private static final long serialVersionUID
private transient Object privateKey
AccessibleContext accessibleContext
Constructor Detail |
public MenuComponent() throws HeadlessException
MenuComponent
.
java.awt.GraphicsEnvironment#isHeadless
Method Detail |
String constructComponentName()
MenuComponent
.
Called by getName
when the name is null
.
MenuComponent
public String getName()
java.awt.MenuComponent#setName(java.lang.String)
public void setName(String name)
name
- the name of the menu componentjava.awt.MenuComponent#getName
public MenuContainer getParent()
null
if this menu component
is the outermost component, the menu bar itselffinal MenuContainer getParent_NoClientCode()
public java.awt.peer.MenuComponentPeer getPeer()
public Font getFont()
null
otherwisejava.awt.MenuComponent#setFont
final Font getFont_NoClientCode()
public void setFont(Font f)
Some look and feels may not support setting the font
of a menu component; in this case, calling setFont
will have no effect.
f
- the font to be setjava.awt.MenuComponent#getFont
public void removeNotify()
public boolean postEvent(Event evt)
dispatchEvent(AWTEvent)
.
evt
- the event which is to take placepublic final void dispatchEvent(AWTEvent e)
void dispatchEventImpl(AWTEvent e)
boolean eventEnabled(AWTEvent e)
protected void processEvent(AWTEvent e)
Note that if the event parameter is null
the behavior is unspecified and may result in an
exception.
e
- the eventprotected String paramString()
MenuComponent
. 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 be null
.
public String toString()
toString
in class Object
protected final Object getTreeLock()
private void readObject(ObjectInputStream s) throws ClassNotFoundException, IOException, HeadlessException
s
- the ObjectInputStream
to read
ClassNotFoundException
IOException
HeadlessException
java.awt.GraphicsEnvironment#isHeadless
private static void initIDs()
public AccessibleContext getAccessibleContext()
AccessibleContext
associated with
this MenuComponent
.
The method implemented by this base class returns null
.
Classes that extend MenuComponent
should implement this method to return the
AccessibleContext
associated with the subclass.
AccessibleContext
of this
MenuComponent
int getAccessibleIndexInParent()
AccessibleStateSet getAccessibleStateSet()
AccessibleStateSet
containing the current state set of the objectAccessibleState
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |