我以编程方式创建了一个向导。它包含 3 个面板。第二个是devicePane,第三个是detailsPane。第三个面板由一个进度条组成。我希望我的程序process()
在显示第三个面板后启动一个功能?可以使用线程吗?
else if(ParserMainDlg.this.POSITION==1){
if(sqlConnectionPane.executeProcess()==true){
devicePane.setDeviceList();
ParserMainDlg.this.POSITION++;
fireStateChanged(oldValue);
}
}
else if(ParserMainDlg.this.POSITION==2){
System.out.println("position:"+ParserMainDlg.this.POSITION);
if(devicePane.executeProcess()==true){
ParserMainDlg.this.POSITION++;
fireStateChanged(oldValue);
}
我想sqlConnectionPane.executeProcess()
调用一个在显示 devicePane 面板后开始执行的函数?