Package org.jbpm.designer.client.util
Interface ComboBoxView
-
- All Known Implementing Classes:
ComboBoxViewImpl
public interface ComboBoxView
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceComboBoxView.ComboBoxPresenterInterface for Presenter class of ComboBoxstatic interfaceComboBoxView.ModelPresenterInterface implemented by the owner of the model being manipulated by the ComboBox
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetListBoxValue()StringgetModelValue()StringgetValue()voidinit(ComboBoxView.ComboBoxPresenter presenter, ComboBoxView.ModelPresenter modelPresenter, org.gwtbootstrap3.client.ui.ValueListBox<String> listBox, org.gwtbootstrap3.client.ui.TextBox textBox, String placeholder)voidlistBoxGotFocus()voidsetAcceptableValues(List<String> acceptableValues)voidsetListBoxModelValue(String value)voidsetListBoxValue(String value)voidsetListBoxVisible(boolean visible)voidsetTextBoxFocus(boolean focus)voidsetTextBoxModelValue(String value)voidsetTextBoxValue(String value)voidsetTextBoxVisible(boolean visible)voidtextBoxGotFocus()voidtextBoxLostFocus()
-
-
-
Method Detail
-
init
void init(ComboBoxView.ComboBoxPresenter presenter, ComboBoxView.ModelPresenter modelPresenter, org.gwtbootstrap3.client.ui.ValueListBox<String> listBox, org.gwtbootstrap3.client.ui.TextBox textBox, String placeholder)
-
getModelValue
String getModelValue()
-
setTextBoxModelValue
void setTextBoxModelValue(String value)
-
setListBoxModelValue
void setListBoxModelValue(String value)
-
setTextBoxVisible
void setTextBoxVisible(boolean visible)
-
setListBoxVisible
void setListBoxVisible(boolean visible)
-
setTextBoxFocus
void setTextBoxFocus(boolean focus)
-
getListBoxValue
String getListBoxValue()
-
setListBoxValue
void setListBoxValue(String value)
-
setTextBoxValue
void setTextBoxValue(String value)
-
getValue
String getValue()
-
textBoxGotFocus
void textBoxGotFocus()
-
textBoxLostFocus
void textBoxLostFocus()
-
listBoxGotFocus
void listBoxGotFocus()
-
-