< prev index next >

core/JemmyCore/src/org/jemmy/lookup/ParentImpl.java

Print this page

        

@@ -29,61 +29,35 @@
 import org.jemmy.control.Wrapper;
 import org.jemmy.env.Environment;
 import org.jemmy.interfaces.Parent;
 
 /**
- *
- * @param <T>
  * @author shura
  */
 public class ParentImpl<T> extends AbstractParent<T> {
 
     private Class<T> type;
     private ControlHierarchy ch;
     private ControlList cl;
     private Environment env;
     private Wrapper wrapper;
 
-    /**
-     *
-     * @param env
-     * @param type
-     * @param ch
-     */
     public ParentImpl(Environment env, Class<T> type, ControlHierarchy ch) {
         this(env, type, ch, Wrap.getWrapper());
     }
-    /**
-     *
-     * @param env
-     * @param type
-     * @param ch
-     * @param wrapper
-     */
+
     public ParentImpl(Environment env, Class<T> type, ControlHierarchy ch, Wrapper wrapper) {
         this.type = type;
         this.ch = ch;
         this.env = env;
         this.wrapper = wrapper;
     }
 
-    /**
-     *
-     * @param env
-     * @param type
-     * @param cl
-     */
     public ParentImpl(Environment env, Class<T> type, ControlList cl) {
         this(env, type, cl, Wrap.getWrapper());
     }
-    /**
-     *
-     * @param env
-     * @param type
-     * @param cl
-     * @param wrapper
-     */
+
     public ParentImpl(Environment env, Class<T> type, ControlList cl, Wrapper wrapper) {
         this.type = type;
         this.cl = cl;
         this.env = env;
         this.wrapper = wrapper;
< prev index next >