]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixes invalid JavaDoc for DeferredWorker (#14625)
authorHenrik Paul <henrik@vaadin.com>
Tue, 9 Sep 2014 08:29:26 +0000 (11:29 +0300)
committerHenrik Paul <henrik@vaadin.com>
Tue, 9 Sep 2014 08:29:26 +0000 (11:29 +0300)
Change-Id: I479f9e743849abf63ca898a7d6b11e4d4f94dada

client/src/com/vaadin/client/DeferredWorker.java

index 1eea26bf27a96f5c10ac22b87cc0277a73e40f77..8e78bd9bff782f9d307b64627ef435aad8c06ada 100644 (file)
@@ -26,8 +26,11 @@ package com.vaadin.client;
  */
 public interface DeferredWorker {
     /**
-     * @returns true, if there are operations pending which must be executed
-     *          before reaching a steady state
+     * Checks whether there are operations pending for this widget that must be
+     * executed before reaching a steady state.
+     * 
+     * @returns <code>true</code> iff there are operations pending which must be
+     *          executed before reaching a steady state
      */
     public boolean isWorkPending();
 }