Package org.jbpm.designer.client.util
Interface ComboBoxView.ComboBoxPresenter
-
- All Known Implementing Classes:
ComboBox
- Enclosing interface:
- ComboBoxView
public static interface ComboBoxView.ComboBoxPresenterInterface for Presenter class of ComboBox
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringaddCustomValueToListBoxValues(String newValue, String oldValue)ListBoxValuesgetListBoxValues()StringgetValue()voidinit(ComboBoxView.ModelPresenter modelPresenter, org.gwtbootstrap3.client.ui.ValueListBox<String> listBox, org.gwtbootstrap3.client.ui.TextBox textBox, boolean quoteStringValues, String customPrompt, String placeholder)voidlistBoxValueChanged(String newValue)voidsetCurrentTextValue(String currentTextValue)voidsetListBoxValues(ListBoxValues listBoxValues)voidsetShowCustomValues(boolean showCustomValues)voidtextBoxValueChanged(String newValue)voidupdateListBoxValues(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)
-
-