src/java.desktop/share/classes/java/awt/Dialog.java

Print this page

        

*** 191,201 **** * @see java.awt.Dialog.ModalityType * @see java.awt.Dialog#setModal * * @since 1.6 */ ! public final static ModalityType DEFAULT_MODALITY_TYPE = ModalityType.APPLICATION_MODAL; /** * True if this dialog is modal, false is the dialog is modeless. * A modal dialog blocks user input to some application top-level * windows. This field is kept only for backwards compatibility. Use the --- 191,201 ---- * @see java.awt.Dialog.ModalityType * @see java.awt.Dialog#setModal * * @since 1.6 */ ! public static final ModalityType DEFAULT_MODALITY_TYPE = ModalityType.APPLICATION_MODAL; /** * True if this dialog is modal, false is the dialog is modeless. * A modal dialog blocks user input to some application top-level * windows. This field is kept only for backwards compatibility. Use the
*** 263,273 **** */ TOOLKIT_EXCLUDE }; /* operations with this list should be synchronized on tree lock*/ ! transient static IdentityArrayList<Dialog> modalDialogs = new IdentityArrayList<Dialog>(); transient IdentityArrayList<Window> blockedWindows = new IdentityArrayList<Window>(); /** * Specifies the title of the Dialog. --- 263,273 ---- */ TOOLKIT_EXCLUDE }; /* operations with this list should be synchronized on tree lock*/ ! static transient IdentityArrayList<Dialog> modalDialogs = new IdentityArrayList<Dialog>(); transient IdentityArrayList<Window> blockedWindows = new IdentityArrayList<Window>(); /** * Specifies the title of the Dialog.