< prev index next >

test/jdk/java/awt/Modal/ModalBlockingTests/BlockingFDWNonModal1Test.java

Print this page




  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 8049617
  28  * @summary Check whether a non-modal Dialog created with a null Frame
  29  *          constructor receives focus; whether its components receive focus
  30  *          and respond to key events, when there are other windows shown.
  31  *          Check also the correctness of blocking behavior for other windows shown.
  32  *
  33  * @library ../helpers /lib/testlibrary/
  34  * @library /test/lib
  35  * @build ExtendedRobot
  36  * @build Flag
  37  * @build TestDialog
  38  * @build TestFrame
  39  * @build TestWindow
  40  * @run main BlockingFDWNonModal1Test
  41  */
  42 
  43 public class BlockingFDWNonModal1Test {
  44 
  45     public static void main(String[] args) throws Exception {
  46         (new BlockingFDWTest(null,
  47             BlockingFDWTest.DialogOwner.NULL_FRAME)).doTest();
  48     }
  49 }


  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 8049617
  28  * @summary Check whether a non-modal Dialog created with a null Frame
  29  *          constructor receives focus; whether its components receive focus
  30  *          and respond to key events, when there are other windows shown.
  31  *          Check also the correctness of blocking behavior for other windows shown.
  32  *
  33  * @library ../helpers /lib/client/
  34  * @library /test/lib
  35  * @build ExtendedRobot
  36  * @build Flag
  37  * @build TestDialog
  38  * @build TestFrame
  39  * @build TestWindow
  40  * @run main BlockingFDWNonModal1Test
  41  */
  42 
  43 public class BlockingFDWNonModal1Test {
  44 
  45     public static void main(String[] args) throws Exception {
  46         (new BlockingFDWTest(null,
  47             BlockingFDWTest.DialogOwner.NULL_FRAME)).doTest();
  48     }
  49 }
< prev index next >