Interface WindowConstants
- All Known Implementing Classes:
- JDialog,- JFrame,- JInternalFrame
public interface WindowConstants
Constants used to control the window-closing operation.
 The 
setDefaultCloseOperation and
 getDefaultCloseOperation methods
 provided by JFrame,
 JInternalFrame, and
 JDialog
 use these constants.
 For examples of setting the default window-closing operation, see
 Responding to Window-Closing Events,
 a section in The Java Tutorial.- Since:
- 1.2
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final intThe dispose-window default window close operation.static final intThe do-nothing default window close operation.static final intThe exit application default window close operation.static final intThe hide-window default window close operation
- 
Field Details- 
DO_NOTHING_ON_CLOSEstatic final int DO_NOTHING_ON_CLOSEThe do-nothing default window close operation.- See Also:
 
- 
HIDE_ON_CLOSEstatic final int HIDE_ON_CLOSEThe hide-window default window close operation- See Also:
 
- 
DISPOSE_ON_CLOSEstatic final int DISPOSE_ON_CLOSEThe dispose-window default window close operation.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. - See Also:
 
- 
EXIT_ON_CLOSEstatic final int EXIT_ON_CLOSEThe exit application default window close operation. It is recommended you only use this in an application.- Since:
- 1.4
- See Also:
 
 
-