Uses of Class
java.awt.Window

Packages that use Window
java.awt   
java.awt.event   
 

Uses of Window in java.awt
 

Subclasses of Window in java.awt
 class Dialog
          A Dialog is a top-level window with a title and a border that is typically used to take some form of input from the user.
 class FileDialog
          The FileDialog class displays a dialog window from which the user can select a file.
 class Frame
          A Frame is a top-level window with a title and a border.
 

Methods in java.awt that return Window
private  Window Component.getWindowForObject(Object obj)
          Returns the Window subclass that contains this object.
(package private)  Window Container.getWindow()
           
 Window Window.getOwner()
          Returns the owner of this window.
 Window[] Window.getOwnedWindows()
          Return an array containing all the windows this window currently owns.
 

Methods in java.awt with parameters of type Window
protected abstract  java.awt.peer.WindowPeer Toolkit.createWindow(Window target)
          Creates this toolkit's implementation of Window using the specified peer interface.
private  void Window.ownedInit(Window owner)
           
(package private)  void Window.connectOwnedWindow(Window child)
           
 

Constructors in java.awt with parameters of type Window
Window.Window(Window owner)
          Constructs a new invisible window with the specified window as its owner.
 

Uses of Window in java.awt.event
 

Methods in java.awt.event that return Window
 Window WindowEvent.getWindow()
          Returns the originator of the event.
 

Constructors in java.awt.event with parameters of type Window
WindowEvent.WindowEvent(Window source, int id)
          Constructs a WindowEvent object.