}
private String askUserForTableName() {
String name;
TextFieldInput userInput = new TextFieldInput("Table Name", "What is the name of the table you are querying?");
userInput.setValidator(new TextFieldInputValidator() {
@Override
public boolean validate(String value) {
return !value.isEmpty();
}