Uses of Interface
eu.livotov.tpt.gui.dialogs.OptionDialog.OptionDialogResultListener

Packages that use OptionDialog.OptionDialogResultListener
eu.livotov.tpt.gui.dialogs   
 

Uses of OptionDialog.OptionDialogResultListener in eu.livotov.tpt.gui.dialogs
 

Fields in eu.livotov.tpt.gui.dialogs declared as OptionDialog.OptionDialogResultListener
protected  OptionDialog.OptionDialogResultListener OptionDialog.resultReceiver
           
 

Methods in eu.livotov.tpt.gui.dialogs with parameters of type OptionDialog.OptionDialogResultListener
 void OptionDialog.showConfirmationDialog(java.lang.String title, java.lang.String text, OptionDialog.OptionDialogResultListener resultListener)
          Displays the confirmation dialog, having title, info message and "OK" / "Cancel" buttons.
 void OptionDialog.showCustomDialog(java.lang.String title, com.vaadin.ui.Component content, OptionDialog.OptionDialogResultListener resultListener, OptionKind... dialogOptions)
          Displays the custom dialog, having title, custom provided component and custom buttons.
 void OptionDialog.showMessageDialog(java.lang.String title, java.lang.String text, OptionDialog.OptionDialogResultListener resultListener)
          Displays the information only dialog, having title, info message and single "OK" button that closes the dialog.
 void OptionDialog.showQuestionDialog(java.lang.String title, java.lang.String text, OptionDialog.OptionDialogResultListener resultListener)
          Displays the question dialog, having title, info message and "Yes" / "No" buttons.
 void OptionDialog.showYesNoCancelDialog(java.lang.String title, java.lang.String text, OptionDialog.OptionDialogResultListener resultListener)
          Displays the cancellable question dialog, having title, info message, "Yes", "No" and "Cancel" buttons.