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 interface
ComboBoxView.ComboBoxPresenter
Interface for Presenter class of ComboBoxstatic interface
ComboBoxView.ModelPresenter
Interface 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 String
getListBoxValue()
String
getModelValue()
String
getValue()
void
init(ComboBoxView.ComboBoxPresenter presenter, ComboBoxView.ModelPresenter modelPresenter, org.gwtbootstrap3.client.ui.ValueListBox<String> listBox, org.gwtbootstrap3.client.ui.TextBox textBox, String placeholder)
void
listBoxGotFocus()
void
setAcceptableValues(List<String> acceptableValues)
void
setListBoxModelValue(String value)
void
setListBoxValue(String value)
void
setListBoxVisible(boolean visible)
void
setTextBoxFocus(boolean focus)
void
setTextBoxModelValue(String value)
void
setTextBoxValue(String value)
void
setTextBoxVisible(boolean visible)
void
textBoxGotFocus()
void
textBoxLostFocus()
-
-
-
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()
-
-