Overview | Package | Class | Tree | Deprecated | Index | Help |
Java Platform 1.1.7 |
||
PREV CLASS | NEXT CLASS | FRAMES | NO FRAMES | ||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.Component | +--java.awt.Container | +--java.awt.Window | +--com.sun.java.swing.JWindow
The JWindow component contains a JRootPane as it's only child. The contentPane() should be the parent of any children of the JWindow. From the older java.awt.Window object you would normally do something like this:
window.add(child);However, using JWindow you would code:
window.getContentPane().add(child);The same is true of setting LayoutManagers, removing components, listing children, etc. All these methods should normally be sent to the contentPane() instead of the JWindow itself. 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.
Please see the JRootPane documentation for a complete description of the contentPane(), glassPane(), and layeredPane() components.
For the keyboard keys used by this component in the standard Look and Feel (L&F) renditions, see the JWindow key assignments.
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 Swing1.0 applications. It will not be possible to load serialized Swing1.0 objects with future releases of Swing. The JDK1.2 release of Swing will be the compatibility baseline for the serialized form of Swing objects.
Inner Class Summary | |
JWindow.AccessibleJWindow
The class used to obtain the AccessibleRole for this object. |
Field Summary | |
AccessibleContext | accessibleContext
The accessible context property |
boolean | rootPaneCheckingEnabled
If true then calls to add and setLayout
cause an exception to be thrown. |
JRootPane | rootPane
The JRootPane instance that manages the contentPane
and optional menuBar for this frame, as well as the
glassPane . |
Fields inherited from class java.awt.Component | |
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Constructor Summary | |
JWindow()
Creates a window with no specified owner. |
|
JWindow(java.awt.Frame owner)
Creates a window with the specified owner frame. |
Method Summary | |
void | addImpl(java.awt.Component comp,
java.lang.Object constraints,
int index)
By default, children may not be added directly to a this component, they must be added to its contentPane instead. |
JRootPane | createRootPane()
Called by the constructor methods to create the default rootPane. |
AccessibleContext | getAccessibleContext()
Get the AccessibleContext associated with this JWindow |
java.awt.Container | getContentPane()
Returns the contentPane object for this window. |
java.awt.Component | getGlassPane()
Returns the glassPane object for this window. |
JLayeredPane | getLayeredPane()
Returns the layeredPane object for this window. |
JRootPane | getRootPane()
Returns the rootPane object for this window. |
boolean | isRootPaneCheckingEnabled()
Returns whether calls to add and
setLayout cause an exception to be thrown. |
void | setContentPane(java.awt.Container contentPane)
Sets the contentPane property. |
void | setGlassPane(java.awt.Component glassPane)
Sets the glassPane property. |
void | setLayeredPane(JLayeredPane layeredPane)
Sets the layeredPane property. |
void | setLayout(java.awt.LayoutManager manager)
By default the layout of this component may not be set, the layout of its contentPane should be set instead. |
void | setRootPaneCheckingEnabled(boolean enabled)
Determines whether calls to add and
setLayout cause an exception to be thrown. |
void | setRootPane(JRootPane root)
Sets the rootPane property. |
void | windowInit()
Called by the constructors to init the JWindow properly. |
Methods inherited from class java.awt.Window | |
addNotify, addWindowListener, applyResourceBundle, applyResourceBundle, dispose, getFocusOwner, getInputContext, getLocale, getOwnedWindows, getOwner, getToolkit, getWarningString, isShowing, pack, postEvent, processEvent, processWindowEvent, removeWindowListener, show, toBack, toFront |
Methods inherited from class java.awt.Container | |
add, add, add, add, add, addContainerListener, addImpl, addNotify, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponentAt, getComponentAt, getComponent, getComponentCount, getComponents, getInsets, getLayout, getMaximumSize, getMinimumSize, getPreferredSize, insets, invalidate, isAncestorOf, layout, list, list, locate, minimumSize, paintComponents, paint, paramString, preferredSize, printComponents, print, processContainerEvent, processEvent, removeAll, remove, remove, removeContainerListener, removeNotify, setLayout, update, validate, validateTree |
Methods inherited from class java.awt.Component | |
action, add, addComponentListener, addFocusListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addNotify, addPropertyChangeListener, addPropertyChangeListener, bounds, checkImage, checkImage, coalesceEvents, contains, contains, createImage, createImage, deliverEvent, disable, disableEvents, dispatchEvent, doLayout, enable, enable, enableEvents, enableInputMethods, firePropertyChange, getAlignmentX, getAlignmentY, getBackground, getBounds, getBounds, getColorModel, getComponentAt, getComponentAt, getComponentOrientation, getCursor, getDropTarget, getFont, getFontMetrics, getForeground, getGraphics, getHeight, getInputContext, getInputMethodRequests, getLocale, getLocation, getLocation, getLocationOnScreen, getMaximumSize, getMinimumSize, getName, getParent, getPeer, getPreferredSize, getSize, getSize, getToolkit, getTreeLock, getWidth, getX, getY, gotFocus, handleEvent, hasFocus, hide, imageUpdate, inside, invalidate, isDisplayable, isDoubleBuffered, isEnabled, isFocusTraversable, isLightweight, isOpaque, isShowing, isValid, isVisible, keyDown, keyUp, layout, list, list, list, list, list, locate, location, lostFocus, minimumSize, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, paint, paramString, postEvent, preferredSize, prepareImage, prepareImage, printAll, print, processComponentEvent, processEvent, processFocusEvent, processInputMethodEvent, processKeyEvent, processMouseEvent, processMouseMotionEvent, remove, removeComponentListener, removeFocusListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeNotify, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, repaint, requestFocus, reshape, resize, resize, setBackground, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setEnabled, setFont, setForeground, setLocale, setLocation, setLocation, setName, setSize, setSize, setVisible, show, show, size, toString, transferFocus, update, validate |
Methods inherited from class java.lang.Object | |
clone, equals, finalize, getClass, hashCode, notifyAll, notify, toString, wait, wait, wait |
Field Detail |
protected JRootPane rootPane
contentPane
and optional menuBar
for this frame, as well as the
glassPane
.protected boolean rootPaneCheckingEnabled
add
and setLayout
cause an exception to be thrown.protected AccessibleContext accessibleContext
Constructor Detail |
public JWindow()
public JWindow(java.awt.Frame owner)
owner
- the frame from which the window is displayedMethod Detail |
protected void windowInit()
protected JRootPane createRootPane()
protected boolean isRootPaneCheckingEnabled()
add
and
setLayout
cause an exception to be thrown.add
and setLayout
are checkedprotected void setRootPaneCheckingEnabled(boolean enabled)
add
and
setLayout
cause an exception to be thrown.
enabled
- a boolean value, true if checking is to be
enabled, which cause the exceptions to be thrownprotected void addImpl(java.awt.Component comp, java.lang.Object constraints, int index)
thisComponent.getContentPane().add(child)An attempt to add to directly to this component will cause an runtime exception to be thrown. Subclasses can disable this behavior.
public void setLayout(java.awt.LayoutManager manager)
thisComponent.getContentPane().setLayout(new BorderLayout())An attempt to set the layout of this component will cause an runtime exception to be thrown. Subclasses can disable this behavior.
public JRootPane getRootPane()
protected void setRootPane(JRootPane root)
root
- the rootPane object for this windowpublic java.awt.Container getContentPane()
public void setContentPane(java.awt.Container contentPane)
contentPane
- the contentPane object for this windowpublic JLayeredPane getLayeredPane()
public void setLayeredPane(JLayeredPane layeredPane)
layeredPane
- the layeredPane object for this windowpublic java.awt.Component getGlassPane()
public void setGlassPane(java.awt.Component glassPane)
glassPane
- the glassPane object for this windowpublic AccessibleContext getAccessibleContext()
Overview | Package | Class | Tree | Deprecated | Index | Help |
Java Platform 1.1.7 |
||
PREV CLASS | NEXT CLASS | FRAMES | NO FRAMES | ||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |