Uses of Interface
com.vaadin.terminal.ErrorMessage

Packages that use ErrorMessage
com.vaadin.terminal   
com.vaadin.ui   
 

Uses of ErrorMessage in com.vaadin.terminal
 

Classes in com.vaadin.terminal that implement ErrorMessage
 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.terminal that return ErrorMessage
static ErrorMessage AbstractErrorMessage.getErrorMessageForException(Throwable t)
           
 

Methods in com.vaadin.terminal that return types with arguments of type ErrorMessage
protected  List<ErrorMessage> AbstractErrorMessage.getCauses()
           
 Iterator<ErrorMessage> CompositeErrorMessage.iterator()
          Gets Error Iterator.
 

Methods in com.vaadin.terminal with parameters of type ErrorMessage
protected  void AbstractErrorMessage.addCause(ErrorMessage cause)
           
 

Constructors in com.vaadin.terminal with parameters of type ErrorMessage
CompositeErrorMessage(ErrorMessage[] errorMessages)
          Constructor for CompositeErrorMessage.
 

Constructor parameters in com.vaadin.terminal with type arguments of type ErrorMessage
CompositeErrorMessage(Collection<? extends ErrorMessage> errorMessages)
          Constructor for CompositeErrorMessage.
 

Uses of ErrorMessage in com.vaadin.ui
 

Methods in com.vaadin.ui that return ErrorMessage
 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 Form.getErrorMessage()
          Deprecated. The error message of a Form is the error of the first field with a non-empty error.
 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 AbstractComponent.getErrorMessage()
          Gets the error message for this component.
 

Methods in com.vaadin.ui with parameters of type ErrorMessage
 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
Component.ErrorEvent(ErrorMessage message, Component component)
          Constructs a new event with a specified source component.
 



Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.