Uses of Interface
com.vaadin.server.ErrorMessage
-
Packages that use ErrorMessage Package Description com.vaadin.server com.vaadin.ui -
-
Uses of ErrorMessage in com.vaadin.server
Classes in com.vaadin.server that implement ErrorMessage Modifier and Type Class Description class
AbstractErrorMessage
Base class for component error messages.class
CompositeErrorMessage
Class for combining multiple error messages together.class
SystemError
SystemError
is an error message for a problem caused by error in system, not the user application code.class
UserError
UserError
is a controlled error occurred in application.Methods in com.vaadin.server that return ErrorMessage Modifier and Type Method Description static ErrorMessage
AbstractErrorMessage. getErrorMessageForException(Throwable t)
Methods in com.vaadin.server that return types with arguments of type ErrorMessage Modifier and Type Method Description protected List<ErrorMessage>
AbstractErrorMessage. getCauses()
Iterator<ErrorMessage>
CompositeErrorMessage. iterator()
Gets Error Iterator.Methods in com.vaadin.server with parameters of type ErrorMessage Modifier and Type Method Description protected void
AbstractErrorMessage. addCause(ErrorMessage cause)
Constructors in com.vaadin.server with parameters of type ErrorMessage Constructor Description CompositeErrorMessage(ErrorMessage... errorMessages)
Constructor for CompositeErrorMessage.Constructor parameters in com.vaadin.server with type arguments of type ErrorMessage Constructor Description CompositeErrorMessage(Collection<? extends ErrorMessage> errorMessages)
Constructor for CompositeErrorMessage. -
Uses of ErrorMessage in com.vaadin.ui
Methods in com.vaadin.ui that return ErrorMessage Modifier and Type Method Description ErrorMessage
AbstractComponent. getComponentError()
Gets the component's error message.ErrorMessage
TabSheet.Tab. getComponentError()
Gets the current error message shown for the tab.ErrorMessage
TabSheet.TabSheetTabImpl. getComponentError()
ErrorMessage
AbstractComponent. getErrorMessage()
Gets the error message for this component.ErrorMessage
AbstractField. getErrorMessage()
Error messages shown by the fields are composites of the error message thrown by the superclasses (that is the component error message), validation errors and buffered source errors.ErrorMessage
Component.ErrorEvent. getErrorMessage()
Gets the error message.ErrorMessage
Form. getErrorMessage()
Deprecated.The error message of a Form is the error of the first field with a non-empty error.Methods in com.vaadin.ui with parameters of type ErrorMessage Modifier and Type Method Description void
AbstractComponent. setComponentError(ErrorMessage componentError)
Sets the component's error message.void
TabSheet.Tab. setComponentError(ErrorMessage componentError)
Sets an error indicator to be shown in the tab.void
TabSheet.TabSheetTabImpl. setComponentError(ErrorMessage componentError)
Constructors in com.vaadin.ui with parameters of type ErrorMessage Constructor Description ErrorEvent(ErrorMessage message, Component component)
Constructs a new event with a specified source component.
-