Deletions are marked like this. | Additions are marked like this. |
Line 5: | Line 5: |
== Return Typeの意味が無い問題 == | == Converting ButtonType to Return Type == |
Line 7: | Line 7: |
Dialogの型パラメータはDialogの返り値を示すはずだが、ボタンをつけると全く意味がなくなる。以下のresultはString型のはずだが、そのままではButtonTypeが返されてしまうため、ClassCastExceptionが発生する。 | Dialogの型パラメータはDialogの返り値を示すはずだが、ボタンをつけると全く意味がなくなる。以下のresultはString型のはずだが、そのままではButtonTypeが返されてしまうため、ClassCastExceptionが発生する。この場合ResultConverterの設定が必要。 |
Line 9: | Line 9: |
Type Parameter of Dialog class should designate the return type of it. But if you use some buttons, it has no meaning. Actually the Dialog returns ButtonType. So the following code will occur ClassCastException. | Type Parameter of Dialog class should designate the return type of it. But if you use some buttons, it has no meaning. Actually the Dialog returns ButtonType. So the following code will occur ClassCastException. You need ResultConverter. |
Line 25: | Line 25: |
// setResultConverter(type-> type == ButtonType.OK? "OK":"CANCEL"); | |
Line 33: | Line 34: |
System.out.println("result " + result.orElse(null)); <-- ClassCastException, ButtonType to String | System.out.println("result " + result.orElse(null)); <-- Without ResultConverter, ClassCastException raised |
Line 45: | Line 46: |
|
ダイアログの使い方
ここでは特にButtonTypeボタンの有無による動作の違いについて述べる。
Converting ButtonType to Return Type
Dialogの型パラメータはDialogの返り値を示すはずだが、ボタンをつけると全く意味がなくなる。以下のresultはString型のはずだが、そのままではButtonTypeが返されてしまうため、ClassCastExceptionが発生する。この場合ResultConverterの設定が必要。
Type Parameter of Dialog class should designate the return type of it. But if you use some buttons, it has no meaning. Actually the Dialog returns ButtonType. So the following code will occur ClassCastException. You need ResultConverter.
import java.util.*; import javafx.application.*; import javafx.scene.*; import javafx.scene.control.*; import javafx.stage.*; public class DialogTest1 extends Dialog<String> { public DialogTest1() { Label label = new Label("test dialog"); this.getDialogPane().setContent(label); this.getDialogPane().getButtonTypes().addAll(ButtonType.OK, ButtonType.CANCEL); // setResultConverter(type-> type == ButtonType.OK? "OK":"CANCEL"); } public static class Kicker extends Application { DialogTest1 dialogTest = new DialogTest1(); public void start(Stage stage) { Button open = new Button("open"); open.setOnAction(a-> { Optional<String> result = dialogTest.showAndWait(); System.out.println("result " + result.orElse(null)); <-- Without ResultConverter, ClassCastException raised }); stage.setScene(new Scene(open)); stage.show(); } } public static void main(String[] args) throws Exception { Kicker.launch(Kicker.class); } }