Java Doc for JWindow.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
            javax.swing.JWindow

JWindow
public class JWindow extends Window implements Accessible,RootPaneContainer,TransferHandler.HasGetTransferHandler(Code)
A JWindow is a container that can be displayed anywhere on the user's desktop. It does not have the title bar, window-management buttons, or other trimmings associated with a JFrame, but it is still a "first-class citizen" of the user's desktop, and can exist anywhere on it.

The JWindow component contains a JRootPane as its only child. The contentPane should be the parent of any children of the JWindow. 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:

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

Please see the JRootPane documentation for a complete description of the contentPane, glassPane, and layeredPane components.

In a multi-screen environment, you can create a JWindow on a different screen device. See java.awt.Window 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
version:
   1.74 05/05/07
author:
   David Kloba


Inner Class :protected class AccessibleJWindow extends AccessibleAWTWindow

Field Summary
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  JWindow()
     Creates a window with no specified owner.
public  JWindow(GraphicsConfiguration gc)
     Creates a window with the specified GraphicsConfiguration of a screen device.
public  JWindow(Frame owner)
     Creates a window with the specified owner frame. If owner is null, the shared owner will be used and this window will not be focusable.
public  JWindow(Window owner)
     Creates a window with the specified owner window.
public  JWindow(Window owner, GraphicsConfiguration gc)
     Creates a window with the specified owner window and GraphicsConfiguration of a screen device.

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.
public  AccessibleContextgetAccessibleContext()
     Gets the AccessibleContext associated with this JWindow.
public  ContainergetContentPane()
     Returns the Container which is the contentPane for this window.
public  ComponentgetGlassPane()
     Returns the glassPane Component for this window.
public  GraphicsgetGraphics()
    
public  JLayeredPanegetLayeredPane()
     Returns the layeredPane object for this window.
public  JRootPanegetRootPane()
     Returns the rootPane object for this window.
public  TransferHandlergetTransferHandler()
     Gets the transferHandler property.
protected  booleanisRootPaneCheckingEnabled()
     Returns whether calls to add and setLayout are forwarded to the contentPane.
protected  StringparamString()
     Returns a string representation of this JWindow. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations.
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 for this window.
public  voidsetGlassPane(Component glassPane)
     Sets the glassPane property.
public  voidsetLayeredPane(JLayeredPane layeredPane)
     Sets the layeredPane property.
public  voidsetLayout(LayoutManager manager)
     Sets the LayoutManager.
protected  voidsetRootPane(JRootPane root)
     Sets the new rootPane object for this window.
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)
     Calls paint(g).
protected  voidwindowInit()
     Called by the constructors to init the JWindow properly.

Field Detail
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:   JWindow.getRootPane
See Also:   JWindow.setRootPane



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 JWindow is constructed.
See Also:   JWindow.isRootPaneCheckingEnabled
See Also:   JWindow.setRootPaneCheckingEnabled
See Also:   javax.swing.RootPaneContainer




Constructor Detail
JWindow
public JWindow()(Code)
Creates a window with no specified owner. This window will not be focusable.

This constructor sets the component's locale property to the value returned by JComponent.getDefaultLocale.
throws:
  HeadlessException - ifGraphicsEnvironment.isHeadless() returns true.
See Also:   java.awt.GraphicsEnvironment.isHeadless
See Also:   JWindow.isFocusableWindow
See Also:   JComponent.getDefaultLocale




JWindow
public JWindow(GraphicsConfiguration gc)(Code)
Creates a window with the specified GraphicsConfiguration of a screen device. This window will not be focusable.

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 window with; if gc is null,the system default GraphicsConfigurationis assumed
throws:
  HeadlessException - IfGraphicsEnvironment.isHeadless() returns true.
throws:
  IllegalArgumentException - if gc is not froma screen device.
See Also:   java.awt.GraphicsEnvironment.isHeadless
See Also:   JWindow.isFocusableWindow
See Also:   JComponent.getDefaultLocale
since:
   1.3




JWindow
public JWindow(Frame owner)(Code)
Creates a window with the specified owner frame. If owner is null, the shared owner will be used and this window will not be focusable. Also, this window will not be focusable unless its owner is showing on the screen.

This constructor sets the component's locale property to the value returned by JComponent.getDefaultLocale.
Parameters:
  owner - the frame from which the window is displayed
throws:
  HeadlessException - if GraphicsEnvironment.isHeadless()returns true.
See Also:   java.awt.GraphicsEnvironment.isHeadless
See Also:   JWindow.isFocusableWindow
See Also:   JComponent.getDefaultLocale




JWindow
public JWindow(Window owner)(Code)
Creates a window with the specified owner window. This window will not be focusable unless its owner is showing on the screen. If owner is null, the shared owner will be used and this window will not be focusable.

This constructor sets the component's locale property to the value returned by JComponent.getDefaultLocale.
Parameters:
  owner - the window from which the window is displayed
throws:
  HeadlessException - ifGraphicsEnvironment.isHeadless() returns true.
See Also:   java.awt.GraphicsEnvironment.isHeadless
See Also:   JWindow.isFocusableWindow
See Also:   JComponent.getDefaultLocale




JWindow
public JWindow(Window owner, GraphicsConfiguration gc)(Code)
Creates a window with the specified owner window and GraphicsConfiguration of a screen device. If owner is null, the shared owner will be used and this window will not be focusable.

This constructor sets the component's locale property to the value returned by JComponent.getDefaultLocale.
Parameters:
  owner - the window from which the window is displayed
Parameters:
  gc - the GraphicsConfiguration that is usedto construct the new window with; if gc is null,the system default GraphicsConfigurationis assumed, unless owner is also null, in whichcase the GraphicsConfiguration from theshared owner frame will be used.
throws:
  HeadlessException - ifGraphicsEnvironment.isHeadless() returns true.
throws:
  IllegalArgumentException - if gc is not froma screen device.
See Also:   java.awt.GraphicsEnvironment.isHeadless
See Also:   JWindow.isFocusableWindow
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:   JWindow.setRootPaneCheckingEnabled
See Also:   javax.swing.RootPaneContainer



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



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



getContentPane
public Container getContentPane()(Code)
Returns the Container which is the contentPane for this window. the contentPane property
See Also:   JWindow.setContentPane
See Also:   RootPaneContainer.getContentPane



getGlassPane
public Component getGlassPane()(Code)
Returns the glassPane Component for this window. the glassPane property
See Also:   JWindow.setGlassPane
See Also:   RootPaneContainer.getGlassPane



getGraphics
public Graphics getGraphics()(Code)

since:
   1.6



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



getRootPane
public JRootPane getRootPane()(Code)
Returns the rootPane object for this window. the rootPane property for this window
See Also:   JWindow.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:   JWindow.setTransferHandler
since:
   1.6



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:   JWindow.addImpl
See Also:   JWindow.setLayout
See Also:   JWindow.setRootPaneCheckingEnabled
See Also:   javax.swing.RootPaneContainer



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



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 JWindow or contentPane.
Parameters:
  comp - the component to be removed
throws:
  NullPointerException - if comp is null
See Also:   JWindow.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 for this window. This method is called by the constructor.
Parameters:
  contentPane - the new contentPane
exception:
  IllegalComponentStateException - (a runtimeexception) if the content pane parameter is null
See Also:   JWindow.getContentPane
See Also:   RootPaneContainer.setContentPane



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 window
See Also:   JWindow.getGlassPane
See Also:   RootPaneContainer.setGlassPane



setLayeredPane
public void setLayeredPane(JLayeredPane layeredPane)(Code)
Sets the layeredPane property. This method is called by the constructor.
Parameters:
  layeredPane - the new layeredPane object
exception:
  IllegalComponentStateException - (a runtimeexception) if the content pane parameter is null
See Also:   JWindow.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:   JWindow.setRootPaneCheckingEnabled
See Also:   javax.swing.RootPaneContainer



setRootPane
protected void setRootPane(JRootPane root)(Code)
Sets the new rootPane object for this window. This method is called by the constructor.
Parameters:
  root - the new rootPane property
See Also:   JWindow.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 theJWindow.
See Also:   JWindow.addImpl
See Also:   JWindow.setLayout
See Also:   JWindow.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 JWindow , 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:   JWindow.getTransferHandler
See Also:   java.awt.Component.setDropTarget
since:
   1.6




update
public void update(Graphics g)(Code)
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



windowInit
protected void windowInit()(Code)
Called by the constructors to init the JWindow properly.



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.