プログラムでウィザードを作成しました。3つのパネルが含まれています。2 番目は devicePane で、3 番目は detailsPane です。3 番目のパネルは進行状況バーで構成されます。process()
3 番目のパネルを表示した後、プログラムで関数を開始するようにしたいのですが? スレッドを使用することは可能ですか?
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 パネルを表示した後に実行を開始する関数を呼び出したいですか?