当前位置: 首页>>代码示例>>Java>>正文


Java Util.showWindowWait方法代码示例

本文整理汇总了Java中test.java.awt.regtesthelpers.Util.showWindowWait方法的典型用法代码示例。如果您正苦于以下问题:Java Util.showWindowWait方法的具体用法?Java Util.showWindowWait怎么用?Java Util.showWindowWait使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在test.java.awt.regtesthelpers.Util的用法示例。


在下文中一共展示了Util.showWindowWait方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: start

import test.java.awt.regtesthelpers.Util; //导入方法依赖的package包/类
public void start() {
    Util.showWindowWait(frame);

    if (!b0.hasFocus()) {
        // Request focus on b0.
        if (!Util.focusComponent(b0, 2000)) {
            throw new TestErrorException("couldn't focus " + b0);
        }
    }

    // Try to request focus on b1.
    if (!Util.focusComponent(b1, 2000)) {
        throw new TestFailedException("focus wasn't requested on disabled " + b1);
    }
    System.out.println("Test passed.");
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:17,代码来源:RequestFocusToDisabledCompTest.java

示例2: start

import test.java.awt.regtesthelpers.Util; //导入方法依赖的package包/类
public void start() {
    Util.showWindowWait(frame);

    // Request focus on b1.
    if (!Util.focusComponent(b1, 2000)) {
        throw new TestErrorException("couldn't focus " + b1);
    }

    // Activate b1.
    robot.keyPress(KeyEvent.VK_SPACE);
    robot.delay(50);
    robot.keyRelease(KeyEvent.VK_SPACE);
    Util.waitForIdle(robot);

    // Check that focus has been transfered to b0.
    if (!b0.hasFocus()) {
        throw new TestFailedException("focus wasn't auto-transfered properly!");
    }
    System.out.println("Test passed.");
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:21,代码来源:NoAutotransferToDisabledCompTest.java

示例3: main

import test.java.awt.regtesthelpers.Util; //导入方法依赖的package包/类
public static void main(String[] args) throws InterruptedException {
    if (Util.getWMID() != Util.MUTTER_WM) {
        System.out.println("This test is only useful on Mutter");
        return;
    }
    MutterMaximizeTest frame = new MutterMaximizeTest();
    frame.addWindowListener(Util.getClosingWindowAdapter());

    //Display the window.
    frame.setSize(500, 500);
    Util.showWindowWait(frame);
    runRobotTest(frame);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:14,代码来源:MutterMaximizeTest.java

示例4: start

import test.java.awt.regtesthelpers.Util; //导入方法依赖的package包/类
@Override
public void start() {

    Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener() {
        public void eventDispatched(AWTEvent e) {
            System.err.println(e);
        }
    }, FocusEvent.FOCUS_EVENT_MASK | WindowEvent.WINDOW_FOCUS_EVENT_MASK);

    boolean gained = false;
    final Robot robot = Util.createRobot();

    JFrame frame1 = new JFrame("Main Frame");
    final JButton b1 = new JButton("button1");
    frame1.add(b1);
    frame1.pack();
    frame1.setLocation(0, 300);

    Util.showWindowWait(frame1);

    final JFrame frame2 = new JFrame("Test Frame");
    final JButton b2 = new JButton("button2");
    frame2.add(b2);
    frame2.pack();
    frame2.setLocation(300, 300);

    b2.setEnabled(false);
    b2.requestFocus();

    Util.showWindowWait(frame2);

    robot.delay(500);

    //
    // It's expeced that the focus is restored to <button1>.
    // If not, click <button1> to set focus on it.
    //
    if (!b1.hasFocus()) {
        gained = Util.trackFocusGained(b1, new Runnable() {
            public void run() {
                Util.clickOnComp(b1, robot);
            }
        }, 5000, false);

        if (!gained) {
            throw new RuntimeException("Unexpected state: focus is not on <button1>");
        }
    }

    robot.delay(500);

    //
    // Click <button2>, check that focus is set on the parent frame.
    //
    gained = false;
    gained = Util.trackFocusGained(frame2, new Runnable() {
        public void run() {
            Util.clickOnComp(b2, robot);
        }
    }, 5000, false);

    if (!gained) {
        throw new RuntimeException("Test failed: focus wasn't set to <frame2>");
    }

    System.out.println("Test passed.");
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:68,代码来源:ResetMostRecentFocusOwnerTest.java


注:本文中的test.java.awt.regtesthelpers.Util.showWindowWait方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。