Class DialogController<PreparationType,ResultType>

java.lang.Object
page.codeberg.friedolyn.gui.controllers.Controller<PreparationType>
page.codeberg.friedolyn.gui.controllers.DialogController<PreparationType,ResultType>
Type Parameters:
PreparationType - The type of the object that is passed to the Controller.prepare(PreparationType) method.
ResultType - The type of the result that is returned by the getResult() method.
All Implemented Interfaces:
javafx.fxml.Initializable, Preparable<PreparationType>
Direct Known Subclasses:
ContactController, ContactReplyMethodDialogController, SetupController, SetupEmailDialogController, SetupNtfyDialogController, SetupUnifiedPushDialogController

public abstract class DialogController<PreparationType,ResultType> extends Controller<PreparationType>
A class that defines the behaviour of a dialog in the JavaFX graphical user interface. The dialog asks the user for certain input and, once it is closed, getResult() returns the result of the dialog.
See Also: