| |
|
| java.lang.Object java.awt.Component java.awt.Container java.awt.Window java.awt.Dialog
All known Subclasses: java.awt.FileDialog,
Dialog | public class Dialog extends Window (Code) | | A Dialog is a top-level window with a title and a border
that is typically used to take some form of input from the user.
The size of the dialog includes any area designated for the
border. The dimensions of the border area can be obtained
using the getInsets method, however, since
these dimensions are platform-dependent, a valid insets
value cannot be obtained until the dialog is made displayable
by either calling pack or show .
Since the border area is included in the overall size of the
dialog, the border effectively obscures a portion of the dialog,
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 dialog is BorderLayout .
A dialog may have its native decorations (i.e. Frame & Titlebar) turned off
with setUndecorated . This can only be done while the dialog
is not
Component.isDisplayable displayable .
A dialog may have another window as its owner when it's constructed. When
the owner window of a visible dialog is minimized, the dialog will
automatically be hidden from the user. When the owner window is subsequently
restored, the dialog is made visible to the user again.
In a multi-screen environment, you can create a Dialog
on a different screen device than its owner. See
java.awt.Frame for
more information.
A dialog can be either modeless (the default) or modal. A modal
dialog is one which blocks input to some other top-level windows
in the application, except for any windows created with the dialog
as their owner. See AWT Modality
specification for details.
Dialogs are capable of generating the following
WindowEvents :
WindowOpened , WindowClosing ,
WindowClosed , WindowActivated ,
WindowDeactivated , WindowGainedFocus ,
WindowLostFocus .
See Also: WindowEvent See Also: Window.addWindowListener version: 1.137, 06/05/07 author: Sami Shaio author: Arthur van Hoff since: JDK1.0 |
Inner Class :public static enum ModalityType | |
Inner Class :public static enum ModalExclusionType | |
Inner Class :final class WakingRunnable implements Runnable | |
Inner Class :protected class AccessibleAWTDialog extends AccessibleAWTWindow | |
Field Summary | |
final public static ModalityType | DEFAULT_MODALITY_TYPE Default modality type for modal dialogs. | transient IdentityArrayList<Window> | blockedWindows | transient volatile boolean | isInDispose | transient volatile boolean | isInHide | boolean | modal True if this dialog is modal, false is the dialog is modeless.
A modal dialog blocks user input to some application top-level
windows. | static transient IdentityArrayList<Dialog> | modalDialogs | ModalityType | modalityType Modality type of this dialog. | boolean | resizable A dialog's resizable property. | String | title Specifies the title of the Dialog. | boolean | undecorated This field indicates whether the dialog is undecorated. |
Constructor Summary | |
public | Dialog(Frame owner) Constructs an initially invisible, modeless Dialog with
the specified owner Frame and an empty title. | public | Dialog(Frame owner, boolean modal) Constructs an initially invisible Dialog with the specified
owner Frame and modality and an empty title.
Parameters: owner - the owner of the dialog or null ifthis dialog has no owner Parameters: modal - specifes whether dialog blocks user input to other top-levelwindows when shown. | public | Dialog(Frame owner, String title) Constructs an initially invisible, modeless Dialog with
the specified owner Frame and title. | public | Dialog(Frame owner, String title, boolean modal) Constructs an initially invisible Dialog with the
specified owner Frame , title and modality.
Parameters: owner - the owner of the dialog or null ifthis dialog has no owner Parameters: title - the title of the dialog or null if this dialoghas no title Parameters: modal - specifes whether dialog blocks user input to other top-levelwindows when shown. | public | Dialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc) Constructs an initially invisible Dialog with the specified owner
Frame , title, modality, and GraphicsConfiguration .
Parameters: owner - the owner of the dialog or null if this dialoghas no owner Parameters: title - the title of the dialog or null if this dialoghas no title Parameters: modal - specifes whether dialog blocks user input to other top-levelwindows when shown. | public | Dialog(Dialog owner) Constructs an initially invisible, modeless Dialog with
the specified owner Dialog and an empty title. | public | Dialog(Dialog owner, String title) Constructs an initially invisible, modeless Dialog
with the specified owner Dialog and title. | public | Dialog(Dialog owner, String title, boolean modal) Constructs an initially invisible Dialog with the
specified owner Dialog , title, and modality.
Parameters: owner - the owner of the dialog or null if thisdialog has no owner Parameters: title - the title of the dialog or null if thisdialog has no title Parameters: modal - specifes whether dialog blocks user input to other top-levelwindows when shown. | public | Dialog(Dialog owner, String title, boolean modal, GraphicsConfiguration gc) Constructs an initially invisible Dialog with the
specified owner Dialog , title, modality and
GraphicsConfiguration .
Parameters: owner - the owner of the dialog or null if thisdialog has no owner Parameters: title - the title of the dialog or null if thisdialog has no title Parameters: modal - specifes whether dialog blocks user input to other top-levelwindows when shown. | public | Dialog(Window owner) Constructs an initially invisible, modeless Dialog with the
specified owner Window and an empty title.
Parameters: owner - the owner of the dialog. | public | Dialog(Window owner, String title) Constructs an initially invisible, modeless Dialog with
the specified owner Window and title.
Parameters: owner - the owner of the dialog. | public | Dialog(Window owner, ModalityType modalityType) Constructs an initially invisible Dialog with the
specified owner Window and modality and an empty title.
Parameters: owner - the owner of the dialog. | public | Dialog(Window owner, String title, ModalityType modalityType) Constructs an initially invisible Dialog with the
specified owner Window , title and modality.
Parameters: owner - the owner of the dialog. | public | Dialog(Window owner, String title, ModalityType modalityType, GraphicsConfiguration gc) Constructs an initially invisible Dialog with the
specified owner Window , title, modality and
GraphicsConfiguration .
Parameters: owner - the owner of the dialog. |
Method Summary | |
public void | addNotify() Makes this Dialog displayable by connecting it to
a native screen resource. | void | blockWindow(Window w) | void | blockWindows(java.util.List<Window> toBlock) | static void | checkShouldBeBlocked(Window w) | String | constructComponentName() Construct a name for this component. | void | doDispose() Disposes the Dialog and then causes show() to return if it is currently
blocked. | public AccessibleContext | getAccessibleContext() Gets the AccessibleContext associated with this Dialog. | public ModalityType | getModalityType() Returns the modality type of this dialog. | public String | getTitle() Gets the title of the dialog. | public void | hide() Hides the Dialog and then causes
show to return if it is currently
blocked. | void | interruptBlocking() | public boolean | isModal() Indicates whether the dialog is modal. | final boolean | isModal_NoClientCode() | public boolean | isResizable() Indicates whether this dialog is resizable by the user.
By default, all dialogs are initially resizable. | public boolean | isUndecorated() Indicates whether this dialog is undecorated. | void | modalHide() | void | modalShow() | final void | modalityPopped() | final void | modalityPushed() | protected String | paramString() Returns a string representing the state of this dialog. | public void | setModal(boolean modal) Specifies whether this dialog should be modal. | public void | setModalityType(ModalityType type) Sets the modality type for this dialog. | public void | setResizable(boolean resizable) Sets whether this dialog is resizable by the user. | public void | setTitle(String title) Sets the title of the Dialog. | public void | setUndecorated(boolean undecorated) Disables or enables decorations for this dialog.
This method can only be called while the dialog is not displayable.
Parameters: undecorated - true if no dialog decorations areto be enabled;false if dialog decorations are to be enabled. | public void | setVisible(boolean b) Shows or hides this
Dialog depending on the value of parameter
b .
Parameters: b - if true , makes the Dialog visible, otherwise hides the Dialog .If the dialog and/or its ownerare not yet displayable, both are made displayable. | boolean | shouldBlock(Window w) | public void | show() Makes the
Dialog visible. | public void | toBack()
If this dialog is modal and blocks some windows, then all of them are
also sent to the back to keep them below the blocking dialog. | void | unblockWindow(Window w) |
DEFAULT_MODALITY_TYPE | final public static ModalityType DEFAULT_MODALITY_TYPE(Code) | | Default modality type for modal dialogs. The default modality type is
APPLICATION_MODAL . Calling the oldstyle setModal(true)
is equal to setModalityType(DEFAULT_MODALITY_TYPE) .
See Also: java.awt.Dialog.ModalityType See Also: java.awt.Dialog.setModal since: 1.6 |
blockedWindows | transient IdentityArrayList<Window> blockedWindows(Code) | | |
isInDispose | transient volatile boolean isInDispose(Code) | | |
isInHide | transient volatile boolean isInHide(Code) | | |
modalDialogs | static transient IdentityArrayList<Dialog> modalDialogs(Code) | | |
resizable | boolean resizable(Code) | | A dialog's resizable property. Will be true
if the Dialog is to be resizable, otherwise
it will be false.
See Also: Dialog.setResizable(boolean) |
Dialog | public Dialog(Dialog owner, String title)(Code) | | Constructs an initially invisible, modeless Dialog
with the specified owner Dialog and title.
Parameters: owner - the owner of the dialog or null if thishas no owner Parameters: title - the title of the dialog or null if this dialoghas no title exception: java.lang.IllegalArgumentException - if the owner 'sGraphicsConfiguration is not from a screen device exception: HeadlessException - whenGraphicsEnvironment.isHeadless() returns true See Also: java.awt.GraphicsEnvironment.isHeadless since: 1.2 |
Dialog | public Dialog(Dialog owner, String title, boolean modal)(Code) | | Constructs an initially invisible Dialog with the
specified owner Dialog , title, and modality.
Parameters: owner - the owner of the dialog or null if thisdialog has no owner Parameters: title - the title of the dialog or null if thisdialog has no title Parameters: modal - specifes whether dialog blocks user input to other top-levelwindows when shown. If false , the dialog is MODELESS ;if true , the modality type property is set toDEFAULT_MODALITY_TYPE exception: IllegalArgumentException - if the owner 'sGraphicsConfiguration is not from a screen device exception: HeadlessException - whenGraphicsEnvironment.isHeadless() returns true See Also: java.awt.Dialog.ModalityType See Also: java.awt.Dialog.ModalityType.MODELESS See Also: java.awt.Dialog.DEFAULT_MODALITY_TYPE See Also: java.awt.Dialog.setModal See Also: java.awt.Dialog.setModalityType See Also: java.awt.GraphicsEnvironment.isHeadless since: 1.2 |
addNotify | public void addNotify()(Code) | | Makes this Dialog displayable by connecting it to
a native screen resource. Making a dialog 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: Dialog.removeNotify |
checkShouldBeBlocked | static void checkShouldBeBlocked(Window w)(Code) | | |
constructComponentName | String constructComponentName()(Code) | | Construct a name for this component. Called by getName() when the
name is null.
|
doDispose | void doDispose()(Code) | | Disposes the Dialog and then causes show() to return if it is currently
blocked.
|
getAccessibleContext | public AccessibleContext getAccessibleContext()(Code) | | Gets the AccessibleContext associated with this Dialog.
For dialogs, the AccessibleContext takes the form of an
AccessibleAWTDialog.
A new AccessibleAWTDialog instance is created if necessary.
an AccessibleAWTDialog that serves as theAccessibleContext of this Dialog since: 1.3 |
getTitle | public String getTitle()(Code) | | Gets the title of the dialog. The title is displayed in the
dialog's border.
the title of this dialog window. The title may benull . See Also: java.awt.Dialog.setTitle |
interruptBlocking | void interruptBlocking()(Code) | | |
isModal_NoClientCode | final boolean isModal_NoClientCode()(Code) | | |
isResizable | public boolean isResizable()(Code) | | Indicates whether this dialog is resizable by the user.
By default, all dialogs are initially resizable.
true if the user can resize the dialog;false otherwise. See Also: java.awt.Dialog.setResizable |
isUndecorated | public boolean isUndecorated()(Code) | | Indicates whether this dialog is undecorated.
By default, all dialogs are initially decorated.
true if dialog is undecorated;false otherwise. See Also: java.awt.Dialog.setUndecorated since: 1.4 |
modalHide | void modalHide()(Code) | | |
modalShow | void modalShow()(Code) | | |
modalityPopped | final void modalityPopped()(Code) | | |
modalityPushed | final void modalityPushed()(Code) | | |
paramString | protected String paramString()(Code) | | Returns a string representing the state of this dialog. 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 dialog window. |
setModal | public void setModal(boolean modal)(Code) | | Specifies whether this dialog should be modal.
This method is obsolete and is kept for backwards compatibility only.
Use
Dialog.setModalityType setModalityType() instead.
Note: changing modality of the visible dialog may have no effect
until it is hidden and then shown again.
Parameters: modal - specifies whether dialog blocks input to other windowswhen shown; calling to setModal(true) is equivalent tosetModalityType(Dialog.DEFAULT_MODALITY_TYPE) , andcalling to setModal(false) is equvivalent tosetModalityType(Dialog.ModalityType.MODELESS) See Also: java.awt.Dialog.DEFAULT_MODALITY_TYPE See Also: java.awt.Dialog.ModalityType.MODELESS See Also: java.awt.Dialog.isModal See Also: java.awt.Dialog.getModalityType See Also: java.awt.Dialog.setModalityType since: 1.1 |
setModalityType | public void setModalityType(ModalityType type)(Code) | | Sets the modality type for this dialog. See
java.awt.Dialog.ModalityType ModalityType for possible modality types.
If the given modality type is not supported, MODELESS
is used. You may want to call getModalityType() after calling
this method to ensure that the modality type has been set.
Note: changing modality of the visible dialog may have no effect
until it is hidden and then shown again.
Parameters: type - specifies whether dialog blocks input to otherwindows when shown. null value and unsupported modalitytypes are equivalent to MODELESS exception: SecurityException - if the calling thread does not have permissionto create modal dialogs with the given modalityType See Also: java.awt.Dialog.getModalityType See Also: java.awt.Toolkit.isModalityTypeSupported since: 1.6 |
setResizable | public void setResizable(boolean resizable)(Code) | | Sets whether this dialog is resizable by the user.
Parameters: resizable - true if the user canresize this dialog; false otherwise. See Also: java.awt.Dialog.isResizable |
setTitle | public void setTitle(String title)(Code) | | Sets the title of the Dialog.
Parameters: title - the title displayed in the dialog's border;a null value results in an empty title See Also: Dialog.getTitle |
setUndecorated | public void setUndecorated(boolean undecorated)(Code) | | Disables or enables decorations for this dialog.
This method can only be called while the dialog is not displayable.
Parameters: undecorated - true if no dialog decorations areto be enabled;false if dialog decorations are to be enabled. IllegalComponentStateException if the dialogis displayable. See Also: Dialog.isUndecorated See Also: Component.isDisplayable since: 1.4 |
setVisible | public void setVisible(boolean b)(Code) | | Shows or hides this
Dialog depending on the value of parameter
b .
Parameters: b - if true , makes the Dialog visible, otherwise hides the Dialog .If the dialog and/or its ownerare not yet displayable, both are made displayable. The dialog will be validated prior to being made visible. If false , hides the Dialog and then causes setVisible(true) to return if it is currently blocked.Notes for modal dialogs. - setVisible(true) : If the dialog is not alreadyvisible, this call will not return until the dialog ishidden by calling setVisible(false) or dispose .
- setVisible(false) : Hides the dialog and thenreturns on setVisible(true) if it is currently blocked.
- It is OK to call this method from the event dispatchingthread because the toolkit ensures that other events arenot blocked while this method is blocked.
See Also: java.awt.Window.setVisible See Also: java.awt.Window.dispose See Also: java.awt.Component.isDisplayable See Also: java.awt.Component.validate See Also: java.awt.Dialog.isModal |
show | public void show()(Code) | | Makes the
Dialog visible. If the dialog and/or its owner
are not yet displayable, both are made displayable. The
dialog will be validated prior to being made visible.
If the dialog is already visible, this will bring the dialog
to the front.
If the dialog is modal and is not already visible, this call
will not return until the dialog is hidden by calling hide or
dispose. It is permissible to show modal dialogs from the event
dispatching thread because the toolkit will ensure that another
event pump runs while the one which invoked this method is blocked.
See Also: Component.hide See Also: Component.isDisplayable See Also: Component.validate See Also: Dialog.isModal See Also: Window.setVisible(boolean)Dialog.setVisible(boolean) setVisible(boolean) |
toBack | public void toBack()(Code) | |
If this dialog is modal and blocks some windows, then all of them are
also sent to the back to keep them below the blocking dialog.
See Also: java.awt.Window.toBack |
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)
|
|
|
|