| |
|
| java.lang.Object java.awt.Component java.awt.Container java.awt.Window java.awt.Frame
Frame | public class Frame extends Window implements MenuContainer(Code) | | A Frame is a top-level window with a title and a border.
The size of the frame includes any area designated for the
border. The dimensions of the border area may be obtained
using the getInsets method, however, since
these dimensions are platform-dependent, a valid insets
value cannot be obtained until the frame is made displayable
by either calling pack or show .
Since the border area is included in the overall size of the
frame, the border effectively obscures a portion of the frame,
constraining the area available for rendering and/or displaying
subcomponents to the rectangle which has an upper-left corner
location of (insets.left, insets.top) , and has a size of
width - (insets.left + insets.right) by
height - (insets.top + insets.bottom) .
The default layout for a frame is BorderLayout .
A frame may have its native decorations (i.e. Frame
and Titlebar ) turned off
with setUndecorated . This can only be done while the frame
is not
Component.isDisplayable displayable .
In a multi-screen environment, you can create a Frame
on a different screen device by constructing the Frame
with
Frame.Frame(GraphicsConfiguration) or
#Frame(String title, GraphicsConfiguration) . The
GraphicsConfiguration object is one of the
GraphicsConfiguration objects of the target screen
device.
In a virtual device multi-screen environment in which the desktop
area could span multiple physical screen devices, the bounds of all
configurations are relative to the virtual-coordinate system. The
origin of the virtual-coordinate system is at the upper left-hand
corner of the primary physical screen. Depending on the location
of the primary screen in the virtual device, negative coordinates
are possible, as shown in the following figure.
In such an environment, when calling setLocation ,
you must pass a virtual coordinate to this method. Similarly,
calling getLocationOnScreen on a Frame
returns virtual device coordinates. Call the getBounds
method of a GraphicsConfiguration to find its origin in
the virtual coordinate system.
The following code sets the
location of the Frame at (10, 10) relative
to the origin of the physical screen of the corresponding
GraphicsConfiguration . If the bounds of the
GraphicsConfiguration is not taken into account, the
Frame location would be set at (10, 10) relative to the
virtual-coordinate system and would appear on the primary physical
screen, which might be different from the physical screen of the
specified GraphicsConfiguration .
Frame f = new Frame(GraphicsConfiguration gc);
Rectangle bounds = gc.getBounds();
f.setLocation(10 + bounds.x, 10 + bounds.y);
Frames are capable of generating the following types of
WindowEvent s:
WINDOW_OPENED
WINDOW_CLOSING :
If the program doesn't
explicitly hide or dispose the window while processing
this event, the window close operation is canceled.
WINDOW_CLOSED
WINDOW_ICONIFIED
WINDOW_DEICONIFIED
WINDOW_ACTIVATED
WINDOW_DEACTIVATED
WINDOW_GAINED_FOCUS
WINDOW_LOST_FOCUS
WINDOW_STATE_CHANGED
version: 1.169, 05/05/07 author: Sami Shaio See Also: WindowEvent See Also: Window.addWindowListener since: JDK1.0 |
Inner Class :protected class AccessibleAWTFrame extends AccessibleAWTWindow | |
Constructor Summary | |
public | Frame() Constructs a new instance of Frame that is
initially invisible. | public | Frame(GraphicsConfiguration gc) Constructs a new, initially invisible
Frame with the
specified
GraphicsConfiguration .
Parameters: gc - the GraphicsConfiguration of the target screen device. | public | Frame(String title) Constructs a new, initially invisible Frame object
with the specified title. | public | Frame(String title, GraphicsConfiguration gc) Constructs a new, initially invisible Frame object
with the specified title and a
GraphicsConfiguration .
Parameters: title - the title to be displayed in the frame's border.A null valueis treated as an empty string, "". Parameters: gc - the GraphicsConfiguration of the target screen device. |
Method Summary | |
public void | addNotify() Makes this Frame displayable by connecting it to
a native screen resource. | String | constructComponentName() Construct a name for this component. | public AccessibleContext | getAccessibleContext() Gets the AccessibleContext associated with this Frame. | public int | getCursorType() | public synchronized int | getExtendedState() Gets the state of this frame. | public static Frame[] | getFrames() Returns an array of all
Frame s created by this application.
If called from an applet, the array includes only the
Frame s
accessible by that applet.
Warning: this method may return system created frames, such
as a shared, hidden frame which is used by Swing. | public Image | getIconImage() Returns the image to be displayed as the icon for this frame.
This method is obsolete and kept for backward compatibility
only. | public Rectangle | getMaximizedBounds() Gets maximized bounds for this frame. | public MenuBar | getMenuBar() Gets the menu bar for this frame. | public synchronized int | getState() Gets the state of this frame (obsolete).
In older versions of JDK a frame state could only be NORMAL or
ICONIFIED. | public String | getTitle() Gets the title of the frame. | public boolean | isResizable() Indicates whether this frame is resizable by the user. | public boolean | isUndecorated() Indicates whether this frame is undecorated. | protected String | paramString() Returns a string representing the state of this Frame .
This method is intended to be used only for debugging purposes, and the
content and format of the returned string may vary between
implementations. | void | postProcessKeyEvent(KeyEvent e) | public void | remove(MenuComponent m) Removes the specified menu bar from this frame. | public void | removeNotify() Makes this Frame undisplayable by removing its connection
to its native screen resource. | public void | setCursor(int cursorType) | public synchronized void | setExtendedState(int state) Sets the state of this frame. | public void | setIconImage(Image image) | public synchronized void | setMaximizedBounds(Rectangle bounds) Sets the maximized bounds for this frame.
When a frame is in maximized state the system supplies some
defaults bounds. | public void | setMenuBar(MenuBar mb) Sets the menu bar for this frame to the specified menu bar. | public void | setResizable(boolean resizable) Sets whether this frame is resizable by the user. | public synchronized void | setState(int state) Sets the state of this frame (obsolete).
In older versions of JDK a frame state could only be NORMAL or
ICONIFIED. | public void | setTitle(String title) Sets the title for this frame to the specified string. | public void | setUndecorated(boolean undecorated) Disables or enables decorations for this frame.
This method can only be called while the frame is not displayable.
Parameters: undecorated - true if no frame decorations are to be enabled;false if frame decorations are to be enabled. |
CROSSHAIR_CURSOR | final public static int CROSSHAIR_CURSOR(Code) | | |
DEFAULT_CURSOR | final public static int DEFAULT_CURSOR(Code) | | |
E_RESIZE_CURSOR | final public static int E_RESIZE_CURSOR(Code) | | |
HAND_CURSOR | final public static int HAND_CURSOR(Code) | | |
MAXIMIZED_BOTH | final public static int MAXIMIZED_BOTH(Code) | | This state bit mask indicates that frame is fully maximized
(that is both horizontally and vertically). It is just a
convenience alias for
MAXIMIZED_VERT | MAXIMIZED_HORIZ .
Note that the correct test for frame being fully maximized is
(state & Frame.MAXIMIZED_BOTH) == Frame.MAXIMIZED_BOTH
To test is frame is maximized in some direction use
(state & Frame.MAXIMIZED_BOTH) != 0
See Also: Frame.setExtendedState(int) See Also: Frame.getExtendedState since: 1.4 |
MOVE_CURSOR | final public static int MOVE_CURSOR(Code) | | |
NE_RESIZE_CURSOR | final public static int NE_RESIZE_CURSOR(Code) | | |
NW_RESIZE_CURSOR | final public static int NW_RESIZE_CURSOR(Code) | | |
N_RESIZE_CURSOR | final public static int N_RESIZE_CURSOR(Code) | | |
SE_RESIZE_CURSOR | final public static int SE_RESIZE_CURSOR(Code) | | |
SW_RESIZE_CURSOR | final public static int SW_RESIZE_CURSOR(Code) | | |
S_RESIZE_CURSOR | final public static int S_RESIZE_CURSOR(Code) | | |
TEXT_CURSOR | final public static int TEXT_CURSOR(Code) | | |
WAIT_CURSOR | final public static int WAIT_CURSOR(Code) | | |
W_RESIZE_CURSOR | final public static int W_RESIZE_CURSOR(Code) | | |
mbManagement | boolean mbManagement(Code) | | mbManagement is only used by the Motif implementation.
|
resizable | boolean resizable(Code) | | This field indicates whether the frame is resizable.
This property can be changed at any time.
resizable will be true if the frame is
resizable, otherwise it will be false.
See Also: Frame.isResizable() |
addNotify | public void addNotify()(Code) | | Makes this Frame displayable by connecting it to
a native screen resource. Making a frame displayable will
cause any of its children to be made displayable.
This method is called internally by the toolkit and should
not be called directly by programs.
See Also: Component.isDisplayable See Also: Frame.removeNotify |
constructComponentName | String constructComponentName()(Code) | | Construct a name for this component. Called by getName() when the
name is null.
|
getAccessibleContext | public AccessibleContext getAccessibleContext()(Code) | | Gets the AccessibleContext associated with this Frame.
For frames, the AccessibleContext takes the form of an
AccessibleAWTFrame.
A new AccessibleAWTFrame instance is created if necessary.
an AccessibleAWTFrame that serves as the AccessibleContext of this Frame since: 1.3 |
getCursorType | public int getCursorType()(Code) | | |
getExtendedState | public synchronized int getExtendedState()(Code) | | Gets the state of this frame. The state is
represented as a bitwise mask.
NORMAL
Indicates that no state bits are set.
ICONIFIED
MAXIMIZED_HORIZ
MAXIMIZED_VERT
MAXIMIZED_BOTH
Concatenates MAXIMIZED_HORIZ
and MAXIMIZED_VERT .
a bitwise mask of frame state constants See Also: Frame.setExtendedState(int) since: 1.4 |
getFrames | public static Frame[] getFrames()(Code) | | Returns an array of all
Frame s created by this application.
If called from an applet, the array includes only the
Frame s
accessible by that applet.
Warning: this method may return system created frames, such
as a shared, hidden frame which is used by Swing. Applications
should not assume the existence of these frames, nor should an
application assume anything about these frames such as component
positions, LayoutManager s or serialization.
Note: To obtain a list of all ownerless windows, including
ownerless
Dialog s (introduced in release 1.6), use
Window.getOwnerlessWindows Window.getOwnerlessWindows .
See Also: Window.getWindows See Also: Window.getOwnerlessWindows since: 1.2 |
getIconImage | public Image getIconImage()(Code) | | Returns the image to be displayed as the icon for this frame.
This method is obsolete and kept for backward compatibility
only. Use
Window.getIconImages Window.getIconImages() instead.
If a list of several images was specified as a Window's icon,
this method will return the first item of the list.
the icon image for this frame, or null if this frame doesn't have an icon image. See Also: Frame.setIconImage(Image) See Also: Window.getIconImages See Also: Window.setIconImages |
getMaximizedBounds | public Rectangle getMaximizedBounds()(Code) | | Gets maximized bounds for this frame.
Some fields may contain Integer.MAX_VALUE to indicate
that system supplied values for this field must be used.
maximized bounds for this frame; may be null See Also: Frame.setMaximizedBounds(Rectangle) since: 1.4 |
getState | public synchronized int getState()(Code) | | Gets the state of this frame (obsolete).
In older versions of JDK a frame state could only be NORMAL or
ICONIFIED. Since JDK 1.4 set of supported frame states is
expanded and frame state is represented as a bitwise mask.
For compatibility with old programs this method still returns
Frame.NORMAL and Frame.ICONIFIED but
it only reports the iconic state of the frame, other aspects of
frame state are not reported by this method.
Frame.NORMAL or Frame.ICONIFIED . See Also: Frame.setState(int) See Also: Frame.getExtendedState |
getTitle | public String getTitle()(Code) | | Gets the title of the frame. The title is displayed in the
frame's border.
the title of this frame, or an empty string ("")if this frame doesn't have a title. See Also: Frame.setTitle(String) |
isResizable | public boolean isResizable()(Code) | | Indicates whether this frame is resizable by the user.
By default, all frames are initially resizable.
true if the user can resize this frame; false otherwise. See Also: java.awt.Frame.setResizable(boolean) |
isUndecorated | public boolean isUndecorated()(Code) | | Indicates whether this frame is undecorated.
By default, all frames are initially decorated.
true if frame is undecorated; false otherwise. See Also: java.awt.Frame.setUndecorated(boolean) since: 1.4 |
paramString | protected String paramString()(Code) | | Returns a string representing the state of this Frame .
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 .
the parameter string of this frame |
remove | public void remove(MenuComponent m)(Code) | | Removes the specified menu bar from this frame.
Parameters: m - the menu component to remove.If m is null , then no action is taken |
removeNotify | public void removeNotify()(Code) | | Makes this Frame undisplayable by removing its connection
to its native screen resource. Making a Frame undisplayable
will cause any of its children to be made undisplayable.
This method is called by the toolkit internally and should
not be called directly by programs.
See Also: Component.isDisplayable See Also: Frame.addNotify |
setCursor | public void setCursor(int cursorType)(Code) | | |
setExtendedState | public synchronized void setExtendedState(int state)(Code) | | Sets the state of this frame. The state is
represented as a bitwise mask.
NORMAL
Indicates that no state bits are set.
ICONIFIED
MAXIMIZED_HORIZ
MAXIMIZED_VERT
MAXIMIZED_BOTH
Concatenates MAXIMIZED_HORIZ
and MAXIMIZED_VERT .
Note that if the state is not supported on a
given platform, nothing will happen. The application
may determine if a specific state is available via
the java.awt.Toolkit.isFrameStateSupported(int state)
method.
Parameters: state - a bitwise mask of frame state constants See Also: Frame.getExtendedState See Also: java.awt.Toolkit.isFrameStateSupported(int) since: 1.4 |
setIconImage | public void setIconImage(Image image)(Code) | | |
setMaximizedBounds | public synchronized void setMaximizedBounds(Rectangle bounds)(Code) | | Sets the maximized bounds for this frame.
When a frame is in maximized state the system supplies some
defaults bounds. This method allows some or all of those
system supplied values to be overridden.
If bounds is null , accept bounds
supplied by the system. If non-null you can
override some of the system supplied values while accepting
others by setting those fields you want to accept from system
to Integer.MAX_VALUE .
On some systems only the size portion of the bounds is taken
into account.
Parameters: bounds - bounds for the maximized state See Also: Frame.getMaximizedBounds() since: 1.4 |
setMenuBar | public void setMenuBar(MenuBar mb)(Code) | | Sets the menu bar for this frame to the specified menu bar.
Parameters: mb - the menu bar being set.If this parameter is null then anyexisting menu bar on this frame is removed. See Also: Frame.getMenuBar |
setResizable | public void setResizable(boolean resizable)(Code) | | Sets whether this frame is resizable by the user.
Parameters: resizable - true if this frame is resizable; false otherwise. See Also: java.awt.Frame.isResizable |
setState | public synchronized void setState(int state)(Code) | | Sets the state of this frame (obsolete).
In older versions of JDK a frame state could only be NORMAL or
ICONIFIED. Since JDK 1.4 set of supported frame states is
expanded and frame state is represented as a bitwise mask.
For compatibility with old programs this method still accepts
Frame.NORMAL and Frame.ICONIFIED but
it only changes the iconic state of the frame, other aspects of
frame state are not affected by this method.
Parameters: state - either Frame.NORMAL orFrame.ICONIFIED . See Also: Frame.getState See Also: Frame.setExtendedState(int) |
setTitle | public void setTitle(String title)(Code) | | Sets the title for this frame to the specified string.
Parameters: title - the title to be displayed in the frame's border.A null valueis treated as an empty string, "". See Also: Frame.getTitle |
Methods inherited from java.awt.Window | public void addNotify()(Code)(Java Doc) void addOwnedWindow(WeakReference weakWindow)(Code)(Java Doc) public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public synchronized void addWindowFocusListener(WindowFocusListener l)(Code)(Java Doc) public synchronized void addWindowListener(WindowListener l)(Code)(Java Doc) public synchronized void addWindowStateListener(WindowStateListener l)(Code)(Java Doc) void adjustDecendantsOnParent(int num)(Code)(Java Doc) void adjustListeningChildrenOnParent(long mask, int num)(Code)(Java Doc) public void applyResourceBundle(ResourceBundle rb)(Code)(Java Doc) public void applyResourceBundle(String rbName)(Code)(Java Doc) boolean canContainFocusOwner(Component focusOwnerCandidate)(Code)(Java Doc) final void clearMostRecentFocusOwnerOnHide()(Code)(Java Doc) final static void closeSplashScreen()(Code)(Java Doc) void connectOwnedWindow(Window child)(Code)(Java Doc) String constructComponentName()(Code)(Java Doc) public void createBufferStrategy(int numBuffers)(Code)(Java Doc) public void createBufferStrategy(int numBuffers, BufferCapabilities caps) throws AWTException(Code)(Java Doc) void deliverMouseWheelToAncestor(MouseWheelEvent e)(Code)(Java Doc) void dispatchEventImpl(AWTEvent e)(Code)(Java Doc) boolean dispatchMouseWheelToAncestor(MouseWheelEvent e)(Code)(Java Doc) public void dispose()(Code)(Java Doc) void disposeImpl()(Code)(Java Doc) void doDispose()(Code)(Java Doc) boolean eventEnabled(AWTEvent e)(Code)(Java Doc) public AccessibleContext getAccessibleContext()(Code)(Java Doc) static IdentityArrayList<Window> getAllUnblockedWindows()(Code)(Java Doc) static IdentityArrayList<Window> getAllWindows()(Code)(Java Doc) public BufferStrategy getBufferStrategy()(Code)(Java Doc) Window getDocumentRoot()(Code)(Java Doc) final public Container getFocusCycleRootAncestor()(Code)(Java Doc) public Component getFocusOwner()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public boolean getFocusableWindowState()(Code)(Java Doc) public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc) public java.util.List<Image> getIconImages()(Code)(Java Doc) public InputContext getInputContext()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Locale getLocale()(Code)(Java Doc) Dialog getModalBlocker()(Code)(Java Doc) public Dialog.ModalExclusionType getModalExclusionType()(Code)(Java Doc) public Component getMostRecentFocusOwner()(Code)(Java Doc) public Window[] getOwnedWindows()(Code)(Java Doc) final Window[] getOwnedWindows_NoClientCode()(Code)(Java Doc) public Window getOwner()(Code)(Java Doc) final Window getOwner_NoClientCode()(Code)(Java Doc) public static Window[] getOwnerlessWindows()(Code)(Java Doc) Component getTemporaryLostComponent()(Code)(Java Doc) public Toolkit getToolkit()(Code)(Java Doc) final public String getWarningString()(Code)(Java Doc) public synchronized WindowFocusListener[] getWindowFocusListeners()(Code)(Java Doc) public synchronized WindowListener[] getWindowListeners()(Code)(Java Doc) public synchronized WindowStateListener[] getWindowStateListeners()(Code)(Java Doc) public static Window[] getWindows()(Code)(Java Doc) public void hide()(Code)(Java Doc) public boolean isActive()(Code)(Java Doc) final public boolean isAlwaysOnTop()(Code)(Java Doc) public boolean isAlwaysOnTopSupported()(Code)(Java Doc) public boolean isAutoRequestFocus()(Code)(Java Doc) final public boolean isFocusCycleRoot()(Code)(Java Doc) final public boolean isFocusableWindow()(Code)(Java Doc) public boolean isFocused()(Code)(Java Doc) public boolean isLocationByPlatform()(Code)(Java Doc) boolean isModalBlocked()(Code)(Java Doc) boolean isModalExcluded(Dialog.ModalExclusionType exclusionType)(Code)(Java Doc) boolean isRecursivelyVisible()(Code)(Java Doc) public boolean isShowing()(Code)(Java Doc) public void pack()(Code)(Java Doc) public boolean postEvent(Event e)(Code)(Java Doc) void postProcessKeyEvent(KeyEvent e)(Code)(Java Doc) synchronized void postWindowEvent(int id)(Code)(Java Doc) void preProcessKeyEvent(KeyEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) protected void processWindowEvent(WindowEvent e)(Code)(Java Doc) protected void processWindowFocusEvent(WindowEvent e)(Code)(Java Doc) protected void processWindowStateEvent(WindowEvent e)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) void removeOwnedWindow(WeakReference weakWindow)(Code)(Java Doc) public synchronized void removeWindowFocusListener(WindowFocusListener l)(Code)(Java Doc) public synchronized void removeWindowListener(WindowListener l)(Code)(Java Doc) public synchronized void removeWindowStateListener(WindowStateListener l)(Code)(Java Doc) void resetGC()(Code)(Java Doc) public void reshape(int x, int y, int width, int height)(Code)(Java Doc) final public void setAlwaysOnTop(boolean alwaysOnTop) throws SecurityException(Code)(Java Doc) public void setAutoRequestFocus(boolean autoRequestFocus)(Code)(Java Doc) public void setBounds(int x, int y, int width, int height)(Code)(Java Doc) public void setBounds(Rectangle r)(Code)(Java Doc) void setClientSize(int w, int h)(Code)(Java Doc) public void setCursor(Cursor cursor)(Code)(Java Doc) final public void setFocusCycleRoot(boolean focusCycleRoot)(Code)(Java Doc) public void setFocusableWindowState(boolean focusableWindowState)(Code)(Java Doc) public void setIconImage(Image image)(Code)(Java Doc) public synchronized void setIconImages(java.util.List<? extends Image> icons)(Code)(Java Doc) public void setLocationByPlatform(boolean locationByPlatform)(Code)(Java Doc) public void setLocationRelativeTo(Component c)(Code)(Java Doc) public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc) void setModalBlocked(Dialog blocker, boolean blocked, boolean peerCall)(Code)(Java Doc) public void setModalExclusionType(Dialog.ModalExclusionType exclusionType)(Code)(Java Doc) public void setSize(Dimension d)(Code)(Java Doc) public void setSize(int width, int height)(Code)(Java Doc) Component setTemporaryLostComponent(Component component)(Code)(Java Doc) public void setVisible(boolean b)(Code)(Java Doc) public void show()(Code)(Java Doc) public void toBack()(Code)(Java Doc) final void toBack_NoClientCode()(Code)(Java Doc) public void toFront()(Code)(Java Doc) final void toFront_NoClientCode()(Code)(Java Doc) static void updateChildFocusableWindowState(Window w)(Code)(Java Doc) void updateChildrenBlocking()(Code)(Java Doc)
|
Methods inherited from java.awt.Container | public Component add(Component comp)(Code)(Java Doc) public Component add(String name, Component comp)(Code)(Java Doc) public Component add(Component comp, int index)(Code)(Java Doc) public void add(Component comp, Object constraints)(Code)(Java Doc) public void add(Component comp, Object constraints, int index)(Code)(Java Doc) public synchronized void addContainerListener(ContainerListener l)(Code)(Java Doc) protected void addImpl(Component comp, Object constraints, int index)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) void adjustDecendantsOnParent(int num)(Code)(Java Doc) void adjustDescendants(int num)(Code)(Java Doc) void adjustListeningChildren(long mask, int num)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) boolean canContainFocusOwner(Component focusOwnerCandidate)(Code)(Java Doc) void checkGD(String stringID)(Code)(Java Doc) void checkTreeLock()(Code)(Java Doc) void clearCurrentFocusCycleRootOnHide()(Code)(Java Doc) void clearMostRecentFocusOwnerOnHide()(Code)(Java Doc) final boolean containsFocus()(Code)(Java Doc) public int countComponents()(Code)(Java Doc) int countHierarchyMembers()(Code)(Java Doc) final void createChildHierarchyEvents(int id, long changeFlags, boolean enabledOnToolkit)(Code)(Java Doc) final int createHierarchyEvents(int id, Component changed, Container changedParent, long changeFlags, boolean enabledOnToolkit)(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) void dispatchEventImpl(AWTEvent e)(Code)(Java Doc) void dispatchEventToSelf(AWTEvent e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) boolean eventEnabled(AWTEvent e)(Code)(Java Doc) public Component findComponentAt(int x, int y)(Code)(Java Doc) final Component findComponentAt(int x, int y, boolean ignoreEnabled)(Code)(Java Doc) public Component findComponentAt(Point p)(Code)(Java Doc) final Component findComponentAtImpl(int x, int y, boolean ignoreEnabled)(Code)(Java Doc) Accessible getAccessibleAt(Point p)(Code)(Java Doc) Accessible getAccessibleChild(int i)(Code)(Java Doc) int getAccessibleChildrenCount()(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public Component getComponent(int n)(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public int getComponentCount()(Code)(Java Doc) public int getComponentZOrder(Component comp)(Code)(Java Doc) public Component[] getComponents()(Code)(Java Doc) final Component[] getComponents_NoClientCode()(Code)(Java Doc) public synchronized ContainerListener[] getContainerListeners()(Code)(Java Doc) Component getDropTargetEventTarget(int x, int y, boolean includeSelf)(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public FocusTraversalPolicy getFocusTraversalPolicy()(Code)(Java Doc) Container getHeavyweightContainer()(Code)(Java Doc) public Insets getInsets()(Code)(Java Doc) public LayoutManager getLayout()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) Component getMouseEventTarget(int x, int y, boolean includeSelf)(Code)(Java Doc) public Point getMousePosition(boolean allowChildren) throws HeadlessException(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) final Container getTraversalRoot()(Code)(Java Doc) void initializeFocusTraversalKeys()(Code)(Java Doc) public Insets insets()(Code)(Java Doc) public void invalidate()(Code)(Java Doc) void invalidateTree()(Code)(Java Doc) public boolean isAncestorOf(Component c)(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusCycleRoot()(Code)(Java Doc) final public boolean isFocusTraversalPolicyProvider()(Code)(Java Doc) public boolean isFocusTraversalPolicySet()(Code)(Java Doc) boolean isSameOrAncestorOf(Component comp, boolean allowChildren)(Code)(Java Doc) public void layout()(Code)(Java Doc) void lightweightPaint(Graphics g)(Code)(Java Doc) void lightweightPrint(Graphics g)(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) int numListening(long mask)(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintComponents(Graphics g)(Code)(Java Doc) void paintHeavyweightComponents(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) void postProcessKeyEvent(KeyEvent e)(Code)(Java Doc) boolean postsOldMouseEvents()(Code)(Java Doc) void preProcessKeyEvent(KeyEvent e)(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printComponents(Graphics g)(Code)(Java Doc) void printHeavyweightComponents(Graphics g)(Code)(Java Doc) protected void processContainerEvent(ContainerEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) void proxyEnableEvents(long events)(Code)(Java Doc) public void remove(int index)(Code)(Java Doc) public void remove(Component comp)(Code)(Java Doc) public void removeAll()(Code)(Java Doc) public synchronized void removeContainerListener(ContainerListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public void setComponentZOrder(Component comp, int index)(Code)(Java Doc) public void setFocusCycleRoot(boolean focusCycleRoot)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalPolicy(FocusTraversalPolicy policy)(Code)(Java Doc) final public void setFocusTraversalPolicyProvider(boolean provider)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setLayout(LayoutManager mgr)(Code)(Java Doc) public void transferFocusDownCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void validate()(Code)(Java Doc) protected void validateTree()(Code)(Java Doc)
|
Methods inherited from java.awt.Component | public boolean action(Event evt, Object what)(Code)(Java Doc) public void add(PopupMenu popup)(Code)(Java Doc) public synchronized void addComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void addFocusListener(FocusListener l)(Code)(Java Doc) public void addHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void addHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void addInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void addKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void addMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void addMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void addMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) void adjustListeningChildrenOnParent(long mask, int num)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation orientation)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) boolean areInputMethodsEnabled()(Code)(Java Doc) void autoProcessMouseWheel(MouseWheelEvent e)(Code)(Java Doc) public Rectangle bounds()(Code)(Java Doc) final boolean canBeFocusOwner()(Code)(Java Doc) void checkGD(String stringID)(Code)(Java Doc) public int checkImage(Image image, ImageObserver observer)(Code)(Java Doc) public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) boolean checkWindowClosingException()(Code)(Java Doc) void clearCurrentFocusCycleRootOnHide()(Code)(Java Doc) void clearMostRecentFocusOwnerOnHide()(Code)(Java Doc) protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc) String constructComponentName()(Code)(Java Doc) public boolean contains(int x, int y)(Code)(Java Doc) public boolean contains(Point p)(Code)(Java Doc) boolean containsFocus()(Code)(Java Doc) int countHierarchyMembers()(Code)(Java Doc) void createBufferStrategy(int numBuffers)(Code)(Java Doc) void createBufferStrategy(int numBuffers, BufferCapabilities caps) throws AWTException(Code)(Java Doc) int createHierarchyEvents(int id, Component changed, Container changedParent, long changeFlags, boolean enabledOnToolkit)(Code)(Java Doc) public Image createImage(ImageProducer producer)(Code)(Java Doc) public Image createImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height, ImageCapabilities caps) throws AWTException(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) public void disable()(Code)(Java Doc) final protected void disableEvents(long eventsToDisable)(Code)(Java Doc) final public void dispatchEvent(AWTEvent e)(Code)(Java Doc) void dispatchEventImpl(AWTEvent e)(Code)(Java Doc) boolean dispatchMouseWheelToAncestor(MouseWheelEvent e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) public void enable()(Code)(Java Doc) public void enable(boolean b)(Code)(Java Doc) final protected void enableEvents(long eventsToEnable)(Code)(Java Doc) public void enableInputMethods(boolean enable)(Code)(Java Doc) boolean eventEnabled(AWTEvent e)(Code)(Java Doc) boolean eventTypeEnabled(int type)(Code)(Java Doc) Component findUnderMouseInWindow(PointerInfo pi)(Code)(Java Doc) protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, byte oldValue, byte newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, short oldValue, short newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, long oldValue, long newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, float oldValue, float newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, double oldValue, double newValue)(Code)(Java Doc) public AccessibleContext getAccessibleContext()(Code)(Java Doc) int getAccessibleIndexInParent()(Code)(Java Doc) AccessibleStateSet getAccessibleStateSet()(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) Image getBackBuffer()(Code)(Java Doc) public Color getBackground()(Code)(Java Doc) public int getBaseline(int width, int height)(Code)(Java Doc) public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc) public Rectangle getBounds()(Code)(Java Doc) public Rectangle getBounds(Rectangle rv)(Code)(Java Doc) int getBoundsOp()(Code)(Java Doc) BufferStrategy getBufferStrategy()(Code)(Java Doc) public ColorModel getColorModel()(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public synchronized ComponentListener[] getComponentListeners()(Code)(Java Doc) public ComponentOrientation getComponentOrientation()(Code)(Java Doc) Window getContainingWindow()(Code)(Java Doc) static Window getContainingWindow(Component comp)(Code)(Java Doc) public Cursor getCursor()(Code)(Java Doc) final Cursor getCursor_NoClientCode()(Code)(Java Doc) public synchronized DropTarget getDropTarget()(Code)(Java Doc) public Container getFocusCycleRootAncestor()(Code)(Java Doc) public synchronized FocusListener[] getFocusListeners()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public boolean getFocusTraversalKeysEnabled()(Code)(Java Doc) final Set getFocusTraversalKeys_NoIDCheck(int id)(Code)(Java Doc) public Font getFont()(Code)(Java Doc) public FontMetrics getFontMetrics(Font font)(Code)(Java Doc) final Font getFont_NoClientCode()(Code)(Java Doc) public Color getForeground()(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc) final GraphicsConfiguration getGraphicsConfiguration_NoClientCode()(Code)(Java Doc) final Graphics getGraphics_NoClientCode()(Code)(Java Doc) public int getHeight()(Code)(Java Doc) public synchronized HierarchyBoundsListener[] getHierarchyBoundsListeners()(Code)(Java Doc) public synchronized HierarchyListener[] getHierarchyListeners()(Code)(Java Doc) public boolean getIgnoreRepaint()(Code)(Java Doc) public InputContext getInputContext()(Code)(Java Doc) public synchronized InputMethodListener[] getInputMethodListeners()(Code)(Java Doc) public InputMethodRequests getInputMethodRequests()(Code)(Java Doc) public synchronized KeyListener[] getKeyListeners()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Locale getLocale()(Code)(Java Doc) public Point getLocation()(Code)(Java Doc) public Point getLocation(Point rv)(Code)(Java Doc) public Point getLocationOnScreen()(Code)(Java Doc) final Point getLocationOnScreen_NoTreeLock()(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public synchronized MouseListener[] getMouseListeners()(Code)(Java Doc) public synchronized MouseMotionListener[] getMouseMotionListeners()(Code)(Java Doc) public Point getMousePosition() throws HeadlessException(Code)(Java Doc) public synchronized MouseWheelListener[] getMouseWheelListeners()(Code)(Java Doc) public String getName()(Code)(Java Doc) Container getNativeContainer()(Code)(Java Doc) public Container getParent()(Code)(Java Doc) final Container getParent_NoClientCode()(Code)(Java Doc) public ComponentPeer getPeer()(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)(Code)(Java Doc) public Dimension getSize()(Code)(Java Doc) public Dimension getSize(Dimension rv)(Code)(Java Doc) public Toolkit getToolkit()(Code)(Java Doc) final Toolkit getToolkitImpl()(Code)(Java Doc) Container getTraversalRoot()(Code)(Java Doc) final public Object getTreeLock()(Code)(Java Doc) public int getWidth()(Code)(Java Doc) public int getX()(Code)(Java Doc) public int getY()(Code)(Java Doc) public boolean gotFocus(Event evt, Object what)(Code)(Java Doc) public boolean handleEvent(Event evt)(Code)(Java Doc) public boolean hasFocus()(Code)(Java Doc) public void hide()(Code)(Java Doc) public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)(Code)(Java Doc) void initializeFocusTraversalKeys()(Code)(Java Doc) public boolean inside(int x, int y)(Code)(Java Doc) public void invalidate()(Code)(Java Doc) public boolean isBackgroundSet()(Code)(Java Doc) final boolean isCoalescingEnabled()(Code)(Java Doc) public boolean isCursorSet()(Code)(Java Doc) public boolean isDisplayable()(Code)(Java Doc) public boolean isDoubleBuffered()(Code)(Java Doc) public boolean isEnabled()(Code)(Java Doc) final boolean isEnabledImpl()(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusOwner()(Code)(Java Doc) public boolean isFocusTraversable()(Code)(Java Doc) final boolean isFocusTraversableOverridden()(Code)(Java Doc) public boolean isFocusable()(Code)(Java Doc) public boolean isFontSet()(Code)(Java Doc) public boolean isForegroundSet()(Code)(Java Doc) static boolean isInstanceOf(Object obj, String className)(Code)(Java Doc) public boolean isLightweight()(Code)(Java Doc) public boolean isMaximumSizeSet()(Code)(Java Doc) public boolean isMinimumSizeSet()(Code)(Java Doc) public boolean isOpaque()(Code)(Java Doc) public boolean isPreferredSizeSet()(Code)(Java Doc) boolean isRecursivelyVisible()(Code)(Java Doc) boolean isSameOrAncestorOf(Component comp, boolean allowChildren)(Code)(Java Doc) public boolean isShowing()(Code)(Java Doc) public boolean isValid()(Code)(Java Doc) public boolean isVisible()(Code)(Java Doc) final boolean isVisible_NoClientCode()(Code)(Java Doc) public boolean keyDown(Event evt, int key)(Code)(Java Doc) public boolean keyUp(Event evt, int key)(Code)(Java Doc) public void layout()(Code)(Java Doc) void lightweightPaint(Graphics g)(Code)(Java Doc) void lightweightPrint(Graphics g)(Code)(Java Doc) public void list()(Code)(Java Doc) public void list(PrintStream out)(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Point location()(Code)(Java Doc) public boolean lostFocus(Event evt, Object what)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) public boolean mouseDown(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseDrag(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseEnter(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseExit(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseMove(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseUp(Event evt, int x, int y)(Code)(Java Doc) public void move(int x, int y)(Code)(Java Doc) public void nextFocus()(Code)(Java Doc) int numListening(long mask)(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintAll(Graphics g)(Code)(Java Doc) void paintHeavyweightComponents(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) Point pointRelativeToComponent(Point absolute)(Code)(Java Doc) public boolean postEvent(Event e)(Code)(Java Doc) static boolean postNextFocusHelper(Component toFocus, CausedFocusEvent.Cause cause)(Code)(Java Doc) boolean postsOldMouseEvents()(Code)(Java Doc) final Component preNextFocusHelper()(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public boolean prepareImage(Image image, ImageObserver observer)(Code)(Java Doc) public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printAll(Graphics g)(Code)(Java Doc) void printHeavyweightComponents(Graphics g)(Code)(Java Doc) protected void processComponentEvent(ComponentEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) protected void processFocusEvent(FocusEvent e)(Code)(Java Doc) protected void processHierarchyBoundsEvent(HierarchyEvent e)(Code)(Java Doc) protected void processHierarchyEvent(HierarchyEvent e)(Code)(Java Doc) protected void processInputMethodEvent(InputMethodEvent e)(Code)(Java Doc) protected void processKeyEvent(KeyEvent e)(Code)(Java Doc) protected void processMouseEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseWheelEvent(MouseWheelEvent e)(Code)(Java Doc) public void remove(MenuComponent popup)(Code)(Java Doc) public synchronized void removeComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void removeFocusListener(FocusListener l)(Code)(Java Doc) public void removeHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void removeHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void removeInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void removeKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void removeMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void removeMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void removeMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void repaint()(Code)(Java Doc) public void repaint(long tm)(Code)(Java Doc) public void repaint(int x, int y, int width, int height)(Code)(Java Doc) public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc) public void requestFocus()(Code)(Java Doc) void requestFocus(CausedFocusEvent.Cause cause)(Code)(Java Doc) protected boolean requestFocus(boolean temporary)(Code)(Java Doc) boolean requestFocus(boolean temporary, CausedFocusEvent.Cause cause)(Code)(Java Doc) final boolean requestFocusHelper(boolean temporary, boolean focusedWindowChangeAllowed)(Code)(Java Doc) final boolean requestFocusHelper(boolean temporary, boolean focusedWindowChangeAllowed, CausedFocusEvent.Cause cause)(Code)(Java Doc) public boolean requestFocusInWindow()(Code)(Java Doc) boolean requestFocusInWindow(CausedFocusEvent.Cause cause)(Code)(Java Doc) protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc) boolean requestFocusInWindow(boolean temporary, CausedFocusEvent.Cause cause)(Code)(Java Doc) void resetGC()(Code)(Java Doc) public void reshape(int x, int y, int width, int height)(Code)(Java Doc) public void resize(int width, int height)(Code)(Java Doc) public void resize(Dimension d)(Code)(Java Doc) public void setBackground(Color c)(Code)(Java Doc) public void setBounds(int x, int y, int width, int height)(Code)(Java Doc) public void setBounds(Rectangle r)(Code)(Java Doc) void setBoundsOp(int op)(Code)(Java Doc) public void setComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public void setCursor(Cursor cursor)(Code)(Java Doc) public synchronized void setDropTarget(DropTarget dt)(Code)(Java Doc) public void setEnabled(boolean b)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalKeysEnabled(boolean focusTraversalKeysEnabled)(Code)(Java Doc) final void setFocusTraversalKeys_NoIDCheck(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusable(boolean focusable)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setForeground(Color c)(Code)(Java Doc) void setGCFromPeer()(Code)(Java Doc) public void setIgnoreRepaint(boolean ignoreRepaint)(Code)(Java Doc) public void setLocale(Locale l)(Code)(Java Doc) public void setLocation(int x, int y)(Code)(Java Doc) public void setLocation(Point p)(Code)(Java Doc) public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc) public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc) public void setName(String name)(Code)(Java Doc) public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc) static synchronized void setRequestFocusController(RequestFocusController requestController)(Code)(Java Doc) public void setSize(int width, int height)(Code)(Java Doc) public void setSize(Dimension d)(Code)(Java Doc) public void setVisible(boolean b)(Code)(Java Doc) public void show()(Code)(Java Doc) public void show(boolean b)(Code)(Java Doc) public Dimension size()(Code)(Java Doc) public String toString()(Code)(Java Doc) public void transferFocus()(Code)(Java Doc) public void transferFocusBackward()(Code)(Java Doc) public void transferFocusUpCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) final void updateCursorImmediately()(Code)(Java Doc) public void validate()(Code)(Java Doc)
|
|
|
|