jdk/src/share/classes/java/awt/Dialog.java
changeset 3084 67ca55732362
parent 2470 45c5e082f53d
child 3956 2586d23078e4
equal deleted inserted replaced
3083:1954edd3b7a7 3084:67ca55732362
   260          * property will be left unchanged.
   260          * property will be left unchanged.
   261          */
   261          */
   262         TOOLKIT_EXCLUDE
   262         TOOLKIT_EXCLUDE
   263     };
   263     };
   264 
   264 
   265     /**
       
   266      * @since 1.6
       
   267      */
       
   268     private final static ModalExclusionType DEFAULT_MODAL_EXCLUSION_TYPE =
       
   269         ModalExclusionType.APPLICATION_EXCLUDE;
       
   270 
       
   271     /* operations with this list should be synchronized on tree lock*/
   265     /* operations with this list should be synchronized on tree lock*/
   272     transient static IdentityArrayList<Dialog> modalDialogs = new IdentityArrayList<Dialog>();
   266     transient static IdentityArrayList<Dialog> modalDialogs = new IdentityArrayList<Dialog>();
   273 
   267 
   274     transient IdentityArrayList<Window> blockedWindows = new IdentityArrayList<Window>();
   268     transient IdentityArrayList<Window> blockedWindows = new IdentityArrayList<Window>();
   275 
   269