プログラムでJavaSwingでウィザードを作成しようとしています。
ウィザードペインには次のボタンがあり、ウィザードに表示されているパネルに応じて複数のアクションを実行する必要があります。
Javaコマンドパターンを使用することは可能ですか?方法を教えてもらえますか?前もって感謝します。
ウィザードに使用したコードは
this.mainPanel.add(fileSelectionPane,"SELECT FILE");
this.mainPanel.add(sqlConnectionPane,"SQL CONNECTION");
this.mainPanel.add(devicePane,"PARSER");
this.mainPanel.add(detailsPane,"DISPLAY");
thisLayout.show(this.mainPanel,"SELECT FILE");
this.finishButton.setEnabled(false);
this.backButton.setEnabled(false);
if(newValue==1) {
this.thisLayout.show(this.mainPanel, "SQL CONNECTION");
this.nextButton.setEnabled(true);
this.nextButton.setText("Connect..");
this.cancelButton.setEnabled(true);
this.backButton.setEnabled(true);
}
if(newValue==2) {
this.thisLayout.show(this.mainPanel, "PARSER");
this.nextButton.setEnabled(true);
this.nextButton.setText("Parse..");
this.cancelButton.setEnabled(true);
this.backButton.setEnabled(true);
}
[ファイルの選択]と[SQL接続]で特定のアクションを実行するために次のボタンが必要です。
コマンドパターンを使用することは可能ですか?