edu.mayo.bsi.ngsportal.client
Class SelectStringDialog
java.lang.Object
edu.mayo.bsi.ngsportal.client.SelectStringDialog
public class SelectStringDialog
- extends Object
Class that takes a List of Strings, puts up a Dialog Box with a ComboBox holding the strings,
a Cancel button, and a Select button, and reports the user's choice
@author Gregory Dougherty
SelectStringDialog
public SelectStringDialog(String title,
String message,
List<String> choices,
StringCommand doneCommand,
com.google.gwt.user.client.Command followUp)
- Create and show a dialog that has a ComboBox for choosing one of a list of Strings
- Parameters:
title - The title of the dialogmessage - A message to show above the ComboBoxchoices - List of choices to appear in the ComboBoxdoneCommand - Routine to receive the user's selection and the followUp CommandfollowUp - Command to be executed by doneCommand. Can be null