Package org.openqa.selenium
Class Point
- java.lang.Object
-
- org.openqa.selenium.Point
-
public class Point extends java.lang.Object
A 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 boolean
equals(java.lang.Object o)
int
getX()
int
getY()
int
hashCode()
void
move(int newX, int newY)
Deprecated.Use {moveBy(int, int)
instead}Point
moveBy(int xOffset, int yOffset)
java.lang.String
toString()
-
-
-
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:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in 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:
toString
in classjava.lang.Object
-
-