我可以在隐藏按钮后调用按钮上的doClick
像:
StopBtn.setVisible( false );
StopBtn.doClick();
doClick()
仍会继续开展工作吗?
答案 0 :(得分:3)
我刚试过给你。它仍然有效,这意味着它仍然会触发actionPerformed()
方法。
但是,如果禁用它,它将无效:button.setEnabled(false)
这是有道理的。
答案 1 :(得分:3)
发现这一点的最简单方法当然是测试它(例如,如果您担心Oracle的那些人会改变行为,那么在单元测试中)
@Test
public void clickOnInvisibleButton(){
JButton button = new JButton( "test button" );
button.setVisible( false );
final boolean[] buttonClicked = new boolean[]{false};
button.addActionListener( new ActionListener(){
@Override
public void actionPerformed( ActionEvent e ){
buttonClicked[0] = true;
}
});
button.doClick();
assertTrue( "Button has not been clicked", buttonClicked[0] );
}
否则,您可以查看该方法的源代码
public void doClick(int pressTime) {
Dimension size = getSize();
model.setArmed(true);
model.setPressed(true);
paintImmediately(new Rectangle(0,0, size.width, size.height));
try {
Thread.currentThread().sleep(pressTime);
} catch(InterruptedException ie) {
}
model.setPressed(false);
model.setArmed(false);
}
在那里你找不到能见度的检查。进一步查看(例如,在模型的setPressed
方法中),您将找到enabled
状态的检查,但清楚地看到没有检查是否存在可见性。您还会看到ActionEvent
被触发,这将触发按钮的actionPerformed
方法
public void setPressed(boolean b) {
if((isPressed() == b) || !isEnabled()) {
return;
}
if (b) {
stateMask |= PRESSED;
} else {
stateMask &= ~PRESSED;
}
if(!isPressed() && isArmed()) {
int modifiers = 0;
AWTEvent currentEvent = EventQueue.getCurrentEvent();
if (currentEvent instanceof InputEvent) {
modifiers = ((InputEvent)currentEvent).getModifiers();
} else if (currentEvent instanceof ActionEvent) {
modifiers = ((ActionEvent)currentEvent).getModifiers();
}
fireActionPerformed(
new ActionEvent(this, ActionEvent.ACTION_PERFORMED,
getActionCommand(),
EventQueue.getMostRecentEventTime(),
modifiers));
}
fireStateChanged();
}