< prev index next >

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

Print this page

        

*** 29,39 **** import java.io.Serializable; /** * Replacement for java.awt.Rectangle ! * @author Alexander Kouznetsov <mrkam@mail.ru> */ public class Rectangle implements Serializable { /** * The X coordinate of the upper-left corner of the <code>Rectangle</code>. --- 29,39 ---- import java.io.Serializable; /** * Replacement for java.awt.Rectangle ! * @author mrkam */ public class Rectangle implements Serializable { /** * The X coordinate of the upper-left corner of the <code>Rectangle</code>.
*** 896,906 **** setBounds((int) x0, (int) y0, (int) x1, (int) y1); } /** * {@inheritDoc} - * @return */ public boolean isEmpty() { return (width <= 0) || (height <= 0); } --- 896,905 ----
*** 928,938 **** return super.equals(obj); } /** * {@inheritDoc } - * @return */ @Override public int hashCode() { int hash = 7; hash = 29 * hash + this.x; --- 927,936 ----
< prev index next >