]> source.dussan.org Git - vaadin-framework.git/commitdiff
Javadoc update for AbstractComponent errorHandler
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>
Wed, 24 Sep 2008 08:17:51 +0000 (08:17 +0000)
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>
Wed, 24 Sep 2008 08:17:51 +0000 (08:17 +0000)
svn changeset:5494/svn branch:trunk

src/com/itmill/toolkit/ui/AbstractComponent.java

index c1bbb3b40c4ae01cd50aa8fc07147e4ff5a29286..734204bd9f1b7d40afe198b77bf8e009d8e23efe 100644 (file)
@@ -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);