X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Futil%2Fdialogrunner%2FDialogRunnerI.java;fp=src%2Fjalview%2Futil%2Fdialogrunner%2FDialogRunnerI.java;h=fde80f7843a52154c51915df68f1b41a79e91ed0;hb=3459a8a691cb22508d7067f240b7254e588e77d3;hp=0cb90c27b37373f58802ec6e7ed3c4240cfc69d8;hpb=5b27f1062b2203c4c31702e205f4c78e1992063e;p=jalview.git diff --git a/src/jalview/util/dialogrunner/DialogRunnerI.java b/src/jalview/util/dialogrunner/DialogRunnerI.java index 0cb90c2..fde80f7 100644 --- a/src/jalview/util/dialogrunner/DialogRunnerI.java +++ b/src/jalview/util/dialogrunner/DialogRunnerI.java @@ -29,28 +29,30 @@ package jalview.util.dialogrunner; * @author jprocter * */ -public interface DialogRunnerI { +public interface DialogRunnerI +{ - /** - * Sets the action to be performed when the dialog returns the given response. - * Note this also handles int-valued responses, which will be - * converted to Integer when this method is invoked. - * - * @param response - * @param action - * @return - */ - DialogRunnerI setResponseHandler(Object response, Runnable action); + /** + * Sets the action to be performed when the dialog returns the given response. + * Note this also handles int-valued responses, which will be + * converted to Integer when this method is invoked. + * + * @param response + * @param action + * @return + */ + DialogRunnerI setResponseHandler(Object response, Runnable action); - /** - * Runs the registered handler (if any) for the given response. The default - * action is to do nothing. Typically an action will be need on 'OK' or other - * positive selection in the dialog. An action might in some cases also be - * needed for a 'Cancel' response. - * - * @param response - * @return - */ - default void handleResponse(Object response) { - } + /** + * Runs the registered handler (if any) for the given response. The default + * action is to do nothing. Typically an action will be need on 'OK' or other + * positive selection in the dialog. An action might in some cases also be + * needed for a 'Cancel' response. + * + * @param response + * @return + */ + default void handleResponse(Object response) + { + } }