All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----java.awt.Component | +----java.awt.Container | +----java.awt.Window | +----jp.kyasu.awt.Window
Window
object is a top-level window with no borders and no
menubar. It could be used to implement a pop-up menu. The default layout
for a window is BorderLayout
.
If the JDK has the sun.awt.windows.WWindowPeer#getFocusPeer()
bug (the JDK for Windows 95/NT version 1.1.4 or before), an application
that uses the jp.kyasu.awt
package should use this class
instead of java.awt.Window
.
Because of this bug, if a lightwight component is focus traversable, an application will be hung up.
public Window(Frame parent)
The window is not initially visible. Call the show
method to cause the window to become visible.
public void update(Graphics g)
public Component getFocusOwner()
All Packages Class Hierarchy This Package Previous Next Index