< prev index next >

core/JemmyCore/src/org/jemmy/action/GetAction.java

Print this page

        

@@ -28,44 +28,29 @@
 import org.jemmy.env.Environment;
 
 
 /**
  * An action to get some value.
- * @param <T>
+ *
  * @author shura
  */
 public abstract class GetAction<T> extends Action {
 
     private boolean finished = false;
     private T result = null;
 
-    /**
-     *
-     */
     public GetAction() {
     }
 
-    /**
-     *
-     * @return
-     */
     public boolean isFinished() {
         return finished;
     }
 
-    /**
-     *
-     * @return
-     */
     public T getResult() {
         return result;
     }
 
-    /**
-     *
-     * @param result
-     */
     protected void setResult(T result) {
         this.result = result;
         finished = true;
     }
 
< prev index next >