Interface ValueBoxEditor.View<T>
-
- All Superinterfaces:
org.uberfire.client.mvp.HasPresenter<ValueBoxEditor<T>>,com.google.gwt.user.client.ui.IsWidget,org.uberfire.client.mvp.UberView<ValueBoxEditor<T>>
- All Known Implementing Classes:
ValueBoxEditorView
- Enclosing class:
- ValueBoxEditor<T>
public static interface ValueBoxEditor.View<T> extends org.uberfire.client.mvp.UberView<ValueBoxEditor<T>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValueBoxEditor.View<T>addHelpContent(String title, String content, org.gwtbootstrap3.client.ui.constants.Placement placement)ValueBoxEditor.View<T>clearError()ValueBoxEditor.View<T>setValue(T value)voidsetValueBox(com.google.gwt.user.client.ui.ValueBoxBase<T> widget)ValueBoxEditor.View<T>showError(com.google.gwt.safehtml.shared.SafeHtml message)
-
-
-
Method Detail
-
setValueBox
@UiChild(limit=1, tagname="valuebox") void setValueBox(com.google.gwt.user.client.ui.ValueBoxBase<T> widget)
-
addHelpContent
ValueBoxEditor.View<T> addHelpContent(String title, String content, org.gwtbootstrap3.client.ui.constants.Placement placement)
-
setValue
ValueBoxEditor.View<T> setValue(T value)
-
showError
ValueBoxEditor.View<T> showError(com.google.gwt.safehtml.shared.SafeHtml message)
-
clearError
ValueBoxEditor.View<T> clearError()
-
-