Java Doc for JFrame.java in  » 6.0-JDK-Core » swing » javax » swing » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » swing » javax.swing 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.Component
      java.awt.Container
         java.awt.Window
            java.awt.Frame
               javax.swing.JFrame

JFrame
public class JFrame extends Frame implements WindowConstants,Accessible,RootPaneContainer,TransferHandler.HasGetTransferHandler(Code)
An extended version of java.awt.Frame that adds support for the JFC/Swing component architecture. You can find task-oriented documentation about using JFrame in The Java Tutorial, in the section How to Make Frames.

The JFrame class is slightly incompatible with Frame. Like all other JFC/Swing top-level containers, a JFrame contains a JRootPane as its only child. The content pane provided by the root pane should, as a rule, contain all the non-menu components displayed by the JFrame. This is different from the AWT Frame case. As a conveniance add and its variants, remove and setLayout have been overridden to forward to the contentPane as necessary. This means you can write:

 frame.add(child);
 
And the child will be added to the contentPane. The content pane will always be non-null. Attempting to set it to null will cause the JFrame to throw an exception. The default content pane will have a BorderLayout manager set on it. Refer to javax.swing.RootPaneContainer for details on adding, removing and setting the LayoutManager of a JFrame.

Unlike a Frame, a JFrame has some notion of how to respond when the user attempts to close the window. The default behavior is to simply hide the JFrame when the user closes the window. To change the default behavior, you invoke the method JFrame.setDefaultCloseOperation . To make the JFrame behave the same as a Frame instance, use setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE).

For more information on content panes and other features that root panes provide, see Using Top-Level Containers in The Java Tutorial.

In a multi-screen environment, you can create a JFrame on a different screen device. See java.awt.Frame for more information.

Warning: Swing is not thread safe. For more information see Swing's Threading Policy.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the java.beans package. Please see java.beans.XMLEncoder .
See Also:   JRootPane
See Also:   JFrame.setDefaultCloseOperation
See Also:   java.awt.event.WindowListener.windowClosing
See Also:   javax.swing.RootPaneContainer
version:
   1.119 05/05/07
author:
   Jeff Dinkins
author:
   Georges Saab
author:
   David Kloba


Inner Class :protected class AccessibleJFrame extends AccessibleAWTFrame

Field Summary
final public static  intEXIT_ON_CLOSE
     The exit application default window close operation.
protected  AccessibleContextaccessibleContext
     The accessible context property.
protected  JRootPanerootPane
     The JRootPane instance that manages the contentPane and optional menuBar for this frame, as well as the glassPane.
protected  booleanrootPaneCheckingEnabled
     If true then calls to add and setLayout will be forwarded to the contentPane.

Constructor Summary
public  JFrame()
     Constructs a new frame that is initially invisible.
public  JFrame(GraphicsConfiguration gc)
     Creates a Frame in the specified GraphicsConfiguration of a screen device and a blank title.

This constructor sets the component's locale property to the value returned by JComponent.getDefaultLocale.
Parameters:
  gc - the GraphicsConfiguration that is usedto construct the new Frame;if gc is null, the systemdefault GraphicsConfiguration is assumed
exception:
  IllegalArgumentException - if gc is not froma screen device.

public  JFrame(String title)
     Creates a new, initially invisible Frame with the specified title.
public  JFrame(String title, GraphicsConfiguration gc)
     Creates a JFrame with the specified title and the specified GraphicsConfiguration of a screen device.

This constructor sets the component's locale property to the value returned by JComponent.getDefaultLocale.
Parameters:
  title - the title to be displayed in theframe's border.


Method Summary
protected  voidaddImpl(Component comp, Object constraints, int index)
     Adds the specified child Component.
protected  JRootPanecreateRootPane()
     Called by the constructor methods to create the default rootPane.
protected  voidframeInit()
     Called by the constructors to init the JFrame properly.
public  AccessibleContextgetAccessibleContext()
     Gets the AccessibleContext associated with this JFrame.
public  ContainergetContentPane()
     Returns the contentPane object for this frame.
public  intgetDefaultCloseOperation()
     Returns the operation that occurs when the user initiates a "close" on this frame.
public  ComponentgetGlassPane()
     Returns the glassPane object for this frame.
public  GraphicsgetGraphics()
    
public  JMenuBargetJMenuBar()
     Returns the menubar set on this frame.
public  JLayeredPanegetLayeredPane()
     Returns the layeredPane object for this frame.
public  JRootPanegetRootPane()
     Returns the rootPane object for this frame.
public  TransferHandlergetTransferHandler()
     Gets the transferHandler property.
public static  booleanisDefaultLookAndFeelDecorated()
     Returns true if newly created JFrames should have their Window decorations provided by the current look and feel.
protected  booleanisRootPaneCheckingEnabled()
     Returns whether calls to add and setLayout are forwarded to the contentPane.
protected  StringparamString()
     Returns a string representation of this JFrame. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations.
protected  voidprocessWindowEvent(WindowEvent e)
     Processes window events occurring on this component.
public  voidremove(Component comp)
     Removes the specified component from the container.
public  voidrepaint(long time, int x, int y, int width, int height)
     Repaints the specified rectangle of this component within time milliseconds.
public  voidsetContentPane(Container contentPane)
     Sets the contentPane property.
public  voidsetDefaultCloseOperation(int operation)
     Sets the operation that will happen by default when the user initiates a "close" on this frame. You must specify one of the following choices:

  • DO_NOTHING_ON_CLOSE (defined in WindowConstants): Don't do anything; require the program to handle the operation in the windowClosing method of a registered WindowListener object.
  • HIDE_ON_CLOSE (defined in WindowConstants): Automatically hide the frame after invoking any registered WindowListener objects.
  • DISPOSE_ON_CLOSE (defined in WindowConstants): Automatically hide and dispose the frame after invoking any registered WindowListener objects.
  • EXIT_ON_CLOSE (defined in JFrame): Exit the application using the System exit method.
public static  voidsetDefaultLookAndFeelDecorated(boolean defaultLookAndFeelDecorated)
     Provides a hint as to whether or not newly created JFrames should have their Window decorations (such as borders, widgets to close the window, title...) provided by the current look and feel.
public  voidsetGlassPane(Component glassPane)
     Sets the glassPane property.
public  voidsetIconImage(Image image)
    
public  voidsetJMenuBar(JMenuBar menubar)
     Sets the menubar for this frame.
public  voidsetLayeredPane(JLayeredPane layeredPane)
     Sets the layeredPane property.
public  voidsetLayout(LayoutManager manager)
     Sets the LayoutManager.
protected  voidsetRootPane(JRootPane root)
     Sets the rootPane property.
protected  voidsetRootPaneCheckingEnabled(boolean enabled)
     Sets whether calls to add and setLayout are forwarded to the contentPane.
public  voidsetTransferHandler(TransferHandler newHandler)
     Sets the transferHandler property, which is a mechanism to support transfer of data into this component.
public  voidupdate(Graphics g)
     Just calls paint(g).

Field Detail
EXIT_ON_CLOSE
final public static int EXIT_ON_CLOSE(Code)
The exit application default window close operation. If a window has this set as the close operation and is closed in an applet, a SecurityException may be thrown. It is recommended you only use this in an application.


since:
   1.3




accessibleContext
protected AccessibleContext accessibleContext(Code)
The accessible context property.



rootPane
protected JRootPane rootPane(Code)
The JRootPane instance that manages the contentPane and optional menuBar for this frame, as well as the glassPane.
See Also:   JRootPane
See Also:   RootPaneContainer



rootPaneCheckingEnabled
protected boolean rootPaneCheckingEnabled(Code)
If true then calls to add and setLayout will be forwarded to the contentPane. This is initially false, but is set to true when the JFrame is constructed.
See Also:   JFrame.isRootPaneCheckingEnabled
See Also:   JFrame.setRootPaneCheckingEnabled
See Also:   javax.swing.RootPaneContainer




Constructor Detail
JFrame
public JFrame() throws HeadlessException(Code)
Constructs a new frame that is initially invisible.

This constructor sets the component's locale property to the value returned by JComponent.getDefaultLocale.
exception:
  HeadlessException - if GraphicsEnvironment.isHeadless()returns true.
See Also:   java.awt.GraphicsEnvironment.isHeadless
See Also:   Component.setSize
See Also:   Component.setVisible
See Also:   JComponent.getDefaultLocale




JFrame
public JFrame(GraphicsConfiguration gc)(Code)
Creates a Frame in the specified GraphicsConfiguration of a screen device and a blank title.

This constructor sets the component's locale property to the value returned by JComponent.getDefaultLocale.
Parameters:
  gc - the GraphicsConfiguration that is usedto construct the new Frame;if gc is null, the systemdefault GraphicsConfiguration is assumed
exception:
  IllegalArgumentException - if gc is not froma screen device. This exception is always thrown whenGraphicsEnvironment.isHeadless() returns true.
See Also:   java.awt.GraphicsEnvironment.isHeadless
See Also:   JComponent.getDefaultLocale
since:
   1.3




JFrame
public JFrame(String title) throws HeadlessException(Code)
Creates a new, initially invisible Frame with the specified title.

This constructor sets the component's locale property to the value returned by JComponent.getDefaultLocale.
Parameters:
  title - the title for the frame
exception:
  HeadlessException - if GraphicsEnvironment.isHeadless()returns true.
See Also:   java.awt.GraphicsEnvironment.isHeadless
See Also:   Component.setSize
See Also:   Component.setVisible
See Also:   JComponent.getDefaultLocale




JFrame
public JFrame(String title, GraphicsConfiguration gc)(Code)
Creates a JFrame with the specified title and the specified GraphicsConfiguration of a screen device.

This constructor sets the component's locale property to the value returned by JComponent.getDefaultLocale.
Parameters:
  title - the title to be displayed in theframe's border. A null value is treated asan empty string, "".
Parameters:
  gc - the GraphicsConfiguration that is usedto construct the new JFrame with;if gc is null, the systemdefault GraphicsConfiguration is assumed
exception:
  IllegalArgumentException - if gc is not froma screen device. This exception is always thrown whenGraphicsEnvironment.isHeadless() returns true.
See Also:   java.awt.GraphicsEnvironment.isHeadless
See Also:   JComponent.getDefaultLocale
since:
   1.3





Method Detail
addImpl
protected void addImpl(Component comp, Object constraints, int index)(Code)
Adds the specified child Component. This method is overridden to conditionally forward calls to the contentPane. By default, children are added to the contentPane instead of the frame, refer to javax.swing.RootPaneContainer for details.
Parameters:
  comp - the component to be enhanced
Parameters:
  constraints - the constraints to be respected
Parameters:
  index - the index
exception:
  IllegalArgumentException - if index is invalid
exception:
  IllegalArgumentException - if adding the container's parentto itself
exception:
  IllegalArgumentException - if adding a window to a container
See Also:   JFrame.setRootPaneCheckingEnabled
See Also:   javax.swing.RootPaneContainer



createRootPane
protected JRootPane createRootPane()(Code)
Called by the constructor methods to create the default rootPane.



frameInit
protected void frameInit()(Code)
Called by the constructors to init the JFrame properly.



getAccessibleContext
public AccessibleContext getAccessibleContext()(Code)
Gets the AccessibleContext associated with this JFrame. For JFrames, the AccessibleContext takes the form of an AccessibleJFrame. A new AccessibleJFrame instance is created if necessary. an AccessibleJFrame that serves as the AccessibleContext of this JFrame



getContentPane
public Container getContentPane()(Code)
Returns the contentPane object for this frame. the contentPane property
See Also:   JFrame.setContentPane
See Also:   RootPaneContainer.getContentPane



getDefaultCloseOperation
public int getDefaultCloseOperation()(Code)
Returns the operation that occurs when the user initiates a "close" on this frame. an integer indicating the window-close operation
See Also:   JFrame.setDefaultCloseOperation



getGlassPane
public Component getGlassPane()(Code)
Returns the glassPane object for this frame. the glassPane property
See Also:   JFrame.setGlassPane
See Also:   RootPaneContainer.getGlassPane



getGraphics
public Graphics getGraphics()(Code)

since:
   1.6



getJMenuBar
public JMenuBar getJMenuBar()(Code)
Returns the menubar set on this frame. the menubar for this frame
See Also:   JFrame.setJMenuBar



getLayeredPane
public JLayeredPane getLayeredPane()(Code)
Returns the layeredPane object for this frame. the layeredPane property
See Also:   JFrame.setLayeredPane
See Also:   RootPaneContainer.getLayeredPane



getRootPane
public JRootPane getRootPane()(Code)
Returns the rootPane object for this frame. the rootPane property
See Also:   JFrame.setRootPane
See Also:   RootPaneContainer.getRootPane



getTransferHandler
public TransferHandler getTransferHandler()(Code)
Gets the transferHandler property. the value of the transferHandler property
See Also:   TransferHandler
See Also:   JFrame.setTransferHandler
since:
   1.6



isDefaultLookAndFeelDecorated
public static boolean isDefaultLookAndFeelDecorated()(Code)
Returns true if newly created JFrames should have their Window decorations provided by the current look and feel. This is only a hint, as certain look and feels may not support this feature. true if look and feel should provide Window decorations.
since:
   1.4



isRootPaneCheckingEnabled
protected boolean isRootPaneCheckingEnabled()(Code)
Returns whether calls to add and setLayout are forwarded to the contentPane. true if add and setLayout are fowarded; false otherwise
See Also:   JFrame.addImpl
See Also:   JFrame.setLayout
See Also:   JFrame.setRootPaneCheckingEnabled
See Also:   javax.swing.RootPaneContainer



paramString
protected String paramString()(Code)
Returns a string representation of this JFrame. 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. a string representation of this JFrame



processWindowEvent
protected void processWindowEvent(WindowEvent e)(Code)
Processes window events occurring on this component. Hides the window or disposes of it, as specified by the setting of the defaultCloseOperation property.
Parameters:
  e - the window event
See Also:   JFrame.setDefaultCloseOperation
See Also:   java.awt.Window.processWindowEvent



remove
public void remove(Component comp)(Code)
Removes the specified component from the container. If comp is not the rootPane, this will forward the call to the contentPane. This will do nothing if comp is not a child of the JFrame or contentPane.
Parameters:
  comp - the component to be removed
throws:
  NullPointerException - if comp is null
See Also:   JFrame.add
See Also:   javax.swing.RootPaneContainer



repaint
public void repaint(long time, int x, int y, int width, int height)(Code)
Repaints the specified rectangle of this component within time milliseconds. Refer to RepaintManager for details on how the repaint is handled.
Parameters:
  time - maximum time in milliseconds before update
Parameters:
  x - the x coordinate
Parameters:
  y - the y coordinate
Parameters:
  width - the width
Parameters:
  height - the height
See Also:   RepaintManager
since:
   1.6



setContentPane
public void setContentPane(Container contentPane)(Code)
Sets the contentPane property. This method is called by the constructor.

Swing's painting architecture requires an opaque JComponent in the containment hiearchy. This is typically provided by the content pane. If you replace the content pane it is recommended you replace it with an opaque JComponent.
Parameters:
  contentPane - the contentPane object for this frame
exception:
  java.awt.IllegalComponentStateException - (a runtimeexception) if the content pane parameter is null
See Also:   JFrame.getContentPane
See Also:   RootPaneContainer.setContentPane
See Also:   JRootPane




setDefaultCloseOperation
public void setDefaultCloseOperation(int operation)(Code)
Sets the operation that will happen by default when the user initiates a "close" on this frame. You must specify one of the following choices:

  • DO_NOTHING_ON_CLOSE (defined in WindowConstants): Don't do anything; require the program to handle the operation in the windowClosing method of a registered WindowListener object.
  • HIDE_ON_CLOSE (defined in WindowConstants): Automatically hide the frame after invoking any registered WindowListener objects.
  • DISPOSE_ON_CLOSE (defined in WindowConstants): Automatically hide and dispose the frame after invoking any registered WindowListener objects.
  • EXIT_ON_CLOSE (defined in JFrame): Exit the application using the System exit method. Use this only in applications.

The value is set to HIDE_ON_CLOSE by default. Changes to the value of this property cause the firing of a property change event, with property name "defaultCloseOperation".

Note: When the last displayable window within the Java virtual machine (VM) is disposed of, the VM may terminate. See AWT Threading Issues for more information.
Parameters:
  operation - the operation which should be performed when theuser closes the frame
exception:
  IllegalArgumentException - if defaultCloseOperation value isn't one of the above valid values
See Also:   JFrame.addWindowListener
See Also:   JFrame.getDefaultCloseOperation
See Also:   WindowConstants
throws:
  SecurityException - if EXIT_ON_CLOSE has been specified and theSecurityManager willnot allow the caller to invoke System.exit
See Also:   java.lang.Runtime.exit(int)




setDefaultLookAndFeelDecorated
public static void setDefaultLookAndFeelDecorated(boolean defaultLookAndFeelDecorated)(Code)
Provides a hint as to whether or not newly created JFrames should have their Window decorations (such as borders, widgets to close the window, title...) provided by the current look and feel. If defaultLookAndFeelDecorated is true, the current LookAndFeel supports providing window decorations, and the current window manager supports undecorated windows, then newly created JFrames will have their Window decorations provided by the current LookAndFeel. Otherwise, newly created JFrames will have their Window decorations provided by the current window manager.

You can get the same effect on a single JFrame by doing the following:

 JFrame frame = new JFrame();
 frame.setUndecorated(true);
 frame.getRootPane().setWindowDecorationStyle(JRootPane.FRAME);
 

Parameters:
  defaultLookAndFeelDecorated - A hint as to whether or not currentlook and feel should provide window decorations
See Also:   javax.swing.LookAndFeel.getSupportsWindowDecorations
since:
   1.4



setGlassPane
public void setGlassPane(Component glassPane)(Code)
Sets the glassPane property. This method is called by the constructor.
Parameters:
  glassPane - the glassPane object for this frame
See Also:   JFrame.getGlassPane
See Also:   RootPaneContainer.setGlassPane



setIconImage
public void setIconImage(Image image)(Code)



setJMenuBar
public void setJMenuBar(JMenuBar menubar)(Code)
Sets the menubar for this frame.
Parameters:
  menubar - the menubar being placed in the frame
See Also:   JFrame.getJMenuBar



setLayeredPane
public void setLayeredPane(JLayeredPane layeredPane)(Code)
Sets the layeredPane property. This method is called by the constructor.
Parameters:
  layeredPane - the layeredPane object for this frame
exception:
  java.awt.IllegalComponentStateException - (a runtimeexception) if the layered pane parameter is null
See Also:   JFrame.getLayeredPane
See Also:   RootPaneContainer.setLayeredPane



setLayout
public void setLayout(LayoutManager manager)(Code)
Sets the LayoutManager. Overridden to conditionally forward the call to the contentPane. Refer to javax.swing.RootPaneContainer for more information.
Parameters:
  manager - the LayoutManager
See Also:   JFrame.setRootPaneCheckingEnabled
See Also:   javax.swing.RootPaneContainer



setRootPane
protected void setRootPane(JRootPane root)(Code)
Sets the rootPane property. This method is called by the constructor.
Parameters:
  root - the rootPane object for this frame
See Also:   JFrame.getRootPane



setRootPaneCheckingEnabled
protected void setRootPaneCheckingEnabled(boolean enabled)(Code)
Sets whether calls to add and setLayout are forwarded to the contentPane.
Parameters:
  enabled - true if add and setLayoutare forwarded, false if they should operate directly on theJFrame.
See Also:   JFrame.addImpl
See Also:   JFrame.setLayout
See Also:   JFrame.isRootPaneCheckingEnabled
See Also:   javax.swing.RootPaneContainer



setTransferHandler
public void setTransferHandler(TransferHandler newHandler)(Code)
Sets the transferHandler property, which is a mechanism to support transfer of data into this component. Use null if the component does not support data transfer operations.

If the system property suppressSwingDropSupport is false (the default) and the current drop target on this component is either null or not a user-set drop target, this method will change the drop target as follows: If newHandler is null it will clear the drop target. If not null it will install a new DropTarget .

Note: When used with JFrame , TransferHandler only provides data import capability, as the data export related methods are currently typed to JComponent .

Please see How to Use Drag and Drop and Data Transfer, a section in The Java Tutorial, for more information.
Parameters:
  newHandler - the new TransferHandler
See Also:   TransferHandler
See Also:   JFrame.getTransferHandler
See Also:   java.awt.Component.setDropTarget
since:
   1.6




update
public void update(Graphics g)(Code)
Just calls paint(g). This method was overridden to prevent an unnecessary call to clear the background.
Parameters:
  g - the Graphics context in which to paint



Fields inherited from java.awt.Frame
final public static int CROSSHAIR_CURSOR(Code)(Java Doc)
final public static int DEFAULT_CURSOR(Code)(Java Doc)
final public static int E_RESIZE_CURSOR(Code)(Java Doc)
final public static int HAND_CURSOR(Code)(Java Doc)
final public static int ICONIFIED(Code)(Java Doc)
final public static int MAXIMIZED_BOTH(Code)(Java Doc)
final public static int MAXIMIZED_HORIZ(Code)(Java Doc)
final public static int MAXIMIZED_VERT(Code)(Java Doc)
final public static int MOVE_CURSOR(Code)(Java Doc)
final public static int NE_RESIZE_CURSOR(Code)(Java Doc)
final public static int NORMAL(Code)(Java Doc)
final public static int NW_RESIZE_CURSOR(Code)(Java Doc)
final public static int N_RESIZE_CURSOR(Code)(Java Doc)
final public static int SE_RESIZE_CURSOR(Code)(Java Doc)
final public static int SW_RESIZE_CURSOR(Code)(Java Doc)
final public static int S_RESIZE_CURSOR(Code)(Java Doc)
final public static int TEXT_CURSOR(Code)(Java Doc)
final public static int WAIT_CURSOR(Code)(Java Doc)
final public static int W_RESIZE_CURSOR(Code)(Java Doc)

Methods inherited from java.awt.Frame
public void addNotify()(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public int getCursorType()(Code)(Java Doc)
public synchronized int getExtendedState()(Code)(Java Doc)
public static Frame[] getFrames()(Code)(Java Doc)
public Image getIconImage()(Code)(Java Doc)
public Rectangle getMaximizedBounds()(Code)(Java Doc)
public MenuBar getMenuBar()(Code)(Java Doc)
public synchronized int getState()(Code)(Java Doc)
public String getTitle()(Code)(Java Doc)
public boolean isResizable()(Code)(Java Doc)
public boolean isUndecorated()(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public void remove(MenuComponent m)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public void setCursor(int cursorType)(Code)(Java Doc)
public synchronized void setExtendedState(int state)(Code)(Java Doc)
public void setIconImage(Image image)(Code)(Java Doc)
public synchronized void setMaximizedBounds(Rectangle bounds)(Code)(Java Doc)
public void setMenuBar(MenuBar mb)(Code)(Java Doc)
public void setResizable(boolean resizable)(Code)(Java Doc)
public synchronized void setState(int state)(Code)(Java Doc)
public void setTitle(String title)(Code)(Java Doc)
public void setUndecorated(boolean undecorated)(Code)(Java Doc)

Methods inherited from java.awt.Window
public void addNotify()(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)
public void applyResourceBundle(ResourceBundle rb)(Code)(Java Doc)
public void applyResourceBundle(String rbName)(Code)(Java Doc)
public void createBufferStrategy(int numBuffers)(Code)(Java Doc)
public void createBufferStrategy(int numBuffers, BufferCapabilities caps) throws AWTException(Code)(Java Doc)
public void dispose()(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public BufferStrategy getBufferStrategy()(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)
public Dialog.ModalExclusionType getModalExclusionType()(Code)(Java Doc)
public Component getMostRecentFocusOwner()(Code)(Java Doc)
public Window[] getOwnedWindows()(Code)(Java Doc)
public Window getOwner()(Code)(Java Doc)
public static Window[] getOwnerlessWindows()(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)
public boolean isShowing()(Code)(Java Doc)
public void pack()(Code)(Java Doc)
public boolean postEvent(Event 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)
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)
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)
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)
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)
public void setVisible(boolean b)(Code)(Java Doc)
public void show()(Code)(Java Doc)
public void toBack()(Code)(Java Doc)
public void toFront()(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)
public void applyComponentOrientation(ComponentOrientation o)(Code)(Java Doc)
public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc)
public int countComponents()(Code)(Java Doc)
public void deliverEvent(Event e)(Code)(Java Doc)
public void doLayout()(Code)(Java Doc)
public Component findComponentAt(int x, int y)(Code)(Java Doc)
public Component findComponentAt(Point p)(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)
public synchronized ContainerListener[] getContainerListeners()(Code)(Java Doc)
public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc)
public FocusTraversalPolicy getFocusTraversalPolicy()(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)
public Point getMousePosition(boolean allowChildren) throws HeadlessException(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public Insets insets()(Code)(Java Doc)
public void invalidate()(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)
public void layout()(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)
public void paint(Graphics g)(Code)(Java Doc)
public void paintComponents(Graphics g)(Code)(Java Doc)
protected String paramString()(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)
protected void processContainerEvent(ContainerEvent e)(Code)(Java Doc)
protected void processEvent(AWTEvent e)(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)

Fields inherited from java.awt.Component
final public static float BOTTOM_ALIGNMENT(Code)(Java Doc)
final public static float CENTER_ALIGNMENT(Code)(Java Doc)
final public static float LEFT_ALIGNMENT(Code)(Java Doc)
final public static float RIGHT_ALIGNMENT(Code)(Java Doc)
final public static float TOP_ALIGNMENT(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)
public void applyComponentOrientation(ComponentOrientation orientation)(Code)(Java Doc)
public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc)
public Rectangle bounds()(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)
protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc)
public boolean contains(int x, int y)(Code)(Java Doc)
public boolean contains(Point p)(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)
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)
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)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(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)
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)
public Cursor getCursor()(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)
public Font getFont()(Code)(Java Doc)
public FontMetrics getFontMetrics(Font font)(Code)(Java Doc)
public Color getForeground()(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
public GraphicsConfiguration getGraphicsConfiguration()(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)
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)
public Container getParent()(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 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)
public boolean inside(int x, int y)(Code)(Java Doc)
public void invalidate()(Code)(Java Doc)
public boolean isBackgroundSet()(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)
public boolean isFocusCycleRoot(Container container)(Code)(Java Doc)
public boolean isFocusOwner()(Code)(Java Doc)
public boolean isFocusTraversable()(Code)(Java Doc)
public boolean isFocusable()(Code)(Java Doc)
public boolean isFontSet()(Code)(Java Doc)
public boolean isForegroundSet()(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)
public boolean isShowing()(Code)(Java Doc)
public boolean isValid()(Code)(Java Doc)
public boolean isVisible()(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)
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)
public void paint(Graphics g)(Code)(Java Doc)
public void paintAll(Graphics g)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public boolean postEvent(Event e)(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)
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)
protected boolean requestFocus(boolean temporary)(Code)(Java Doc)
public boolean requestFocusInWindow()(Code)(Java Doc)
protected boolean requestFocusInWindow(boolean temporary)(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)
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)
public void setFocusable(boolean focusable)(Code)(Java Doc)
public void setFont(Font f)(Code)(Java Doc)
public void setForeground(Color c)(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)
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)
public void validate()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.