showInputDialog

This commit is contained in:
Reinhard Pointner 2016-11-27 04:58:19 +08:00
parent 84d728a45b
commit 5f49f53ec3
1 changed files with 1 additions and 1 deletions

View File

@ -564,7 +564,7 @@ public abstract class ScriptShellBaseClass extends Script {
return (RenameAction) DefaultTypeTransformation.castToType(obj, RenameAction.class);
}
public <T> T getUserChoice(Collection<T> options, String title, String message) throws Exception {
public <T> T showInputDialog(Collection<T> options, String title, String message) throws Exception {
if (options.isEmpty()) {
return null;
}