< prev index next >

core/JemmyCore/src/org/jemmy/Rectangle.java

Print this page

        

@@ -29,11 +29,11 @@
 import java.io.Serializable;
 
 
 /**
  * Replacement for java.awt.Rectangle
- * @author Alexander Kouznetsov <mrkam@mail.ru>
+ * @author mrkam
  */
 public class Rectangle implements Serializable {
 
     /**
      * The X coordinate of the upper-left corner of the <code>Rectangle</code>.

@@ -896,11 +896,10 @@
         setBounds((int) x0, (int) y0, (int) x1, (int) y1);
     }
 
     /**
      * {@inheritDoc}
-     * @return
      */
     public boolean isEmpty() {
         return (width <= 0) || (height <= 0);
     }
 

@@ -928,11 +927,10 @@
         return super.equals(obj);
     }
 
     /**
      * {@inheritDoc }
-     * @return
      */
     @Override
     public int hashCode() {
         int hash = 7;
         hash = 29 * hash + this.x;
< prev index next >