jdk/src/java.desktop/share/classes/java/awt/Dialog.java
changeset 32865 f9cb6e427f9e
parent 30471 c1568a2416a8
child 35667 ed476aba94de
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
   191      * @see java.awt.Dialog.ModalityType
   191      * @see java.awt.Dialog.ModalityType
   192      * @see java.awt.Dialog#setModal
   192      * @see java.awt.Dialog#setModal
   193      *
   193      *
   194      * @since 1.6
   194      * @since 1.6
   195      */
   195      */
   196     public final static ModalityType DEFAULT_MODALITY_TYPE = ModalityType.APPLICATION_MODAL;
   196     public static final ModalityType DEFAULT_MODALITY_TYPE = ModalityType.APPLICATION_MODAL;
   197 
   197 
   198     /**
   198     /**
   199      * True if this dialog is modal, false is the dialog is modeless.
   199      * True if this dialog is modal, false is the dialog is modeless.
   200      * A modal dialog blocks user input to some application top-level
   200      * A modal dialog blocks user input to some application top-level
   201      * windows. This field is kept only for backwards compatibility. Use the
   201      * windows. This field is kept only for backwards compatibility. Use the
   263          */
   263          */
   264         TOOLKIT_EXCLUDE
   264         TOOLKIT_EXCLUDE
   265     };
   265     };
   266 
   266 
   267     /* operations with this list should be synchronized on tree lock*/
   267     /* operations with this list should be synchronized on tree lock*/
   268     transient static IdentityArrayList<Dialog> modalDialogs = new IdentityArrayList<Dialog>();
   268     static transient IdentityArrayList<Dialog> modalDialogs = new IdentityArrayList<Dialog>();
   269 
   269 
   270     transient IdentityArrayList<Window> blockedWindows = new IdentityArrayList<Window>();
   270     transient IdentityArrayList<Window> blockedWindows = new IdentityArrayList<Window>();
   271 
   271 
   272     /**
   272     /**
   273      * Specifies the title of the Dialog.
   273      * Specifies the title of the Dialog.