Package com.vaadin.client.ui
Interface HasErrorIndicatorElement
-
- All Known Implementing Classes:
Slot
,VButton
,VCaption
,VCheckBox
,VColorPicker
,VFormLayout.ErrorFlag
,VLink
,VNativeButton
,VPanel
,VTabsheet.TabCaption
public interface HasErrorIndicatorElement
Implemented by widgets supporting an error indicator.- Since:
- 8.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.gwt.dom.client.Element
getErrorIndicatorElement()
Gets the error indicator element.void
setErrorIndicatorElementVisible(boolean visible)
Sets the visibility of the error indicator element.
-
-
-
Method Detail
-
getErrorIndicatorElement
com.google.gwt.dom.client.Element getErrorIndicatorElement()
Gets the error indicator element.- Returns:
- the error indicator element
-
setErrorIndicatorElementVisible
void setErrorIndicatorElementVisible(boolean visible)
Sets the visibility of the error indicator element.- Parameters:
visible
-true
to show the error indicator element,false
to hide it
-
-