public interface IUserInputRequester
IUserInputRequester provides methods to request input
from the user via special dialogs. The IUserInputRequester
can be referenced directly within a document template by its name
userInputRequester.
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
requestStringInput(java.lang.String title,
java.lang.String message,
java.lang.String lable)
Opens a dialog with a text field and requests the user to enter a
text.
|
java.lang.String |
requestStringInput(java.lang.String title,
java.lang.String message,
java.lang.String lable,
java.lang.String defaultValue)
Opens a dialog with a text field and requests the user to enter a
text.
|
int |
requestStringSelectionFromList(java.lang.String title,
java.lang.String message,
java.lang.String lable,
java.util.List<java.lang.String> selectionList)
Opens a dialog and requests the user to select a text from a list of
text values.
|
int |
requestStringSelectionFromList(java.lang.String title,
java.lang.String message,
java.lang.String lable,
java.util.List<java.lang.String> selectionList,
int indexOfDefaultValue)
Opens a dialog and requests the user to select a text from a list of
text values.
|
java.lang.String requestStringInput(java.lang.String title,
java.lang.String message,
java.lang.String lable)
title - Title of the dialogmessage - Message dispalyed in the dialogs headerlable - Label of the requested text valuejava.lang.String requestStringInput(java.lang.String title,
java.lang.String message,
java.lang.String lable,
java.lang.String defaultValue)
title - Title of the dialogmessage - Message dispalyed in the dialogs headerlable - Label of the requested text valuedefaultValue - default value for input fieldint requestStringSelectionFromList(java.lang.String title,
java.lang.String message,
java.lang.String lable,
java.util.List<java.lang.String> selectionList)
title - Title of the dialogmessage - Message dispalyed in the dialogs headerlable - Label of the requested text valueselectionList - List of text valuesint requestStringSelectionFromList(java.lang.String title,
java.lang.String message,
java.lang.String lable,
java.util.List<java.lang.String> selectionList,
int indexOfDefaultValue)
title - Title of the dialogmessage - Message dispalyed in the dialogs headerlable - Label of the requested text valueselectionList - List of text valuesindexOfDefaultValue -