From: Joonas Lehtinen Date: Wed, 24 Sep 2008 08:17:51 +0000 (+0000) Subject: Javadoc update for AbstractComponent errorHandler X-Git-Tag: 6.7.0.beta1~4107 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=83137a294ebfc65be74efd3b899cdd5aeb7288dc;p=vaadin-framework.git Javadoc update for AbstractComponent errorHandler svn changeset:5494/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/ui/AbstractComponent.java b/src/com/itmill/toolkit/ui/AbstractComponent.java index c1bbb3b40c..734204bd9f 100644 --- a/src/com/itmill/toolkit/ui/AbstractComponent.java +++ b/src/com/itmill/toolkit/ui/AbstractComponent.java @@ -1242,6 +1242,15 @@ public abstract class AbstractComponent implements Component, MethodEventSource this.errorHandler = errorHandler; } + /** + * Handle the component error event. + * + * @param error + * Error event to handle + * @return True if the error has been handled False, otherwise. If the error + * haven't been handled by this component, it will be handled in the + * application error handler. + */ public boolean handleError(ComponentErrorEvent error) { if (errorHandler != null) { return errorHandler.handleComponentError(error);