java 获取焦点 按钮_Java JButton.hasFocus方法代码示例

本文展示了如何在Java中使用JButton的hasFocus方法检查按钮是否获得焦点,以及通过AWTEventListener监听焦点事件。通过创建两个JFrame和JButton实例,模拟了焦点转移的场景,并利用Robot类进行自动化测试,确保焦点正确转移。
摘要由CSDN通过智能技术生成

import javax.swing.JButton; //导入方法依赖的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 .

// If not, click 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 ");

}

}

robot.delay(500);

//

// Click , 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 ");

}

System.out.println("Test passed.");

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值