Package org.jbpm.designer.client.util
Interface ComboBoxView.ComboBoxPresenter
-
- All Known Implementing Classes:
ComboBox
- Enclosing interface:
- ComboBoxView
public static interface ComboBoxView.ComboBoxPresenter
Interface for Presenter class of ComboBox
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
addCustomValueToListBoxValues(String newValue, String oldValue)
ListBoxValues
getListBoxValues()
String
getValue()
void
init(ComboBoxView.ModelPresenter modelPresenter, org.gwtbootstrap3.client.ui.ValueListBox<String> listBox, org.gwtbootstrap3.client.ui.TextBox textBox, boolean quoteStringValues, String customPrompt, String placeholder)
void
listBoxValueChanged(String newValue)
void
setCurrentTextValue(String currentTextValue)
void
setListBoxValues(ListBoxValues listBoxValues)
void
setShowCustomValues(boolean showCustomValues)
void
textBoxValueChanged(String newValue)
void
updateListBoxValues(String listBoxValue)
-
-
-
Method Detail
-
init
void init(ComboBoxView.ModelPresenter modelPresenter, org.gwtbootstrap3.client.ui.ValueListBox<String> listBox, org.gwtbootstrap3.client.ui.TextBox textBox, boolean quoteStringValues, String customPrompt, String placeholder)
-
setListBoxValues
void setListBoxValues(ListBoxValues listBoxValues)
-
setShowCustomValues
void setShowCustomValues(boolean showCustomValues)
-
setCurrentTextValue
void setCurrentTextValue(String currentTextValue)
-
getListBoxValues
ListBoxValues getListBoxValues()
-
updateListBoxValues
void updateListBoxValues(String listBoxValue)
-
addCustomValueToListBoxValues
String addCustomValueToListBoxValues(String newValue, String oldValue)
-
getValue
String getValue()
-
listBoxValueChanged
void listBoxValueChanged(String newValue)
-
textBoxValueChanged
void textBoxValueChanged(String newValue)
-
-