本文整理汇总了Java中test.java.awt.regtesthelpers.Util.focusComponent方法的典型用法代码示例。如果您正苦于以下问题:Java Util.focusComponent方法的具体用法?Java Util.focusComponent怎么用?Java Util.focusComponent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类test.java.awt.regtesthelpers.Util
的用法示例。
在下文中一共展示了Util.focusComponent方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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.");
}
示例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.");
}
示例3: init
import test.java.awt.regtesthelpers.Util; //导入方法依赖的package包/类
public static void init() throws Throwable {
SwingUtilities.invokeAndWait(new Runnable() {
@Override
public void run() {
frame = new JFrame();
frame.setLayout(new FlowLayout());
JPanel p1 = new JPanel();
button = new JButton("Test");
p1.add(button);
frame.add(p1);
text = new WeakReference<JTextField>(new JTextField("Text"));
p = new WeakReference<JPanel>(new JPanel(new FlowLayout()));
p.get().add(text.get());
frame.add(p.get());
frame.setBounds(500, 400, 200, 200);
frame.setVisible(true);
}
});
Util.focusComponent(text.get(), 500);
Util.clickOnComp(button, new Robot());
//References to objects testes for memory leak are stored in Util.
//Need to clean them
Util.cleanUp();
SwingUtilities.invokeAndWait(new Runnable() {
@Override
public void run() {
frame.remove(p.get());
}
});
Util.waitForIdle(null);
//After the next caret blink it automatically TextField references
Thread.sleep(text.get().getCaret().getBlinkRate() * 2);
Util.waitForIdle(null);
assertGC();
}