Package org.openqa.selenium
Class Point
- java.lang.Object
-
- org.openqa.selenium.Point
-
public class Point extends java.lang.ObjectA copy of java.awt.Point, to remove dependency on awt.
-
-
Constructor Summary
Constructors Constructor Description Point(int x, int y)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(java.lang.Object o)intgetX()intgetY()inthashCode()voidmove(int newX, int newY)Deprecated.Use {moveBy(int, int)instead}PointmoveBy(int xOffset, int yOffset)java.lang.StringtoString()
-
-
-
Method Detail
-
getX
public int getX()
-
getY
public int getY()
-
moveBy
public Point moveBy(int xOffset, int yOffset)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
move
@Deprecated public void move(int newX, int newY)Deprecated.Use {moveBy(int, int)instead}
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-