< prev index next >

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

Print this page

        

@@ -34,13 +34,10 @@
  * Interface to execute user's action <b>at appropriate moment</b>.
  * @author shura
  */
 public interface ActionExecutor {
 
-    /**
-     *
-     */
     public static final String ACTION_EXECUTOR_PROPERTY = "action.executor";
 
     /**
      * Schedules to execute an action and waits for it to finish.
      * @param env Environment.

@@ -67,11 +64,10 @@
     public void executeDetached(Environment env, boolean dispatch, Action action, Object... parameters);
 
     /**
      * Checks whether the current thread is already performing an action.
      * @return true if the current thread is already performing an action.
-     * @see AbstractExecutor#isDispatchThread()
      */
     public boolean isInAction();
 
     /**
      * Waits for no activities to be going on. Implementation may be different
< prev index next >