< prev index next >

test/jdk/java/awt/Modal/MultipleDialogs/MultipleDialogs3Test.java

Print this page




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @key headful
  27  * @bug 8054358
  28  * @summary Check correctness of modal blocking behavior for a chain of Dialogs
  29  *          having different modality types with a Frame as a document root.
  30  *
  31  * @library ../helpers /lib/testlibrary/
  32  * @library /test/lib
  33  * @build ExtendedRobot
  34  * @build Flag
  35  * @build TestDialog
  36  * @build TestFrame
  37  * @run main/timeout=500 MultipleDialogs3Test
  38  */
  39 
  40 
  41 import java.awt.*;
  42 import static jdk.test.lib.Asserts.*;
  43 import java.util.ArrayList;
  44 import java.util.List;
  45 import java.util.Collections;
  46 import java.util.Iterator;
  47 
  48 
  49 public class MultipleDialogs3Test {
  50 
  51     private volatile CustomFrame  frame;




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @key headful
  27  * @bug 8054358
  28  * @summary Check correctness of modal blocking behavior for a chain of Dialogs
  29  *          having different modality types with a Frame as a document root.
  30  *
  31  * @library ../helpers /lib/client/
  32  * @library /test/lib
  33  * @build ExtendedRobot
  34  * @build Flag
  35  * @build TestDialog
  36  * @build TestFrame
  37  * @run main/timeout=500 MultipleDialogs3Test
  38  */
  39 
  40 
  41 import java.awt.*;
  42 import static jdk.test.lib.Asserts.*;
  43 import java.util.ArrayList;
  44 import java.util.List;
  45 import java.util.Collections;
  46 import java.util.Iterator;
  47 
  48 
  49 public class MultipleDialogs3Test {
  50 
  51     private volatile CustomFrame  frame;


< prev index next >