com.remedy.arsys.api
Class CoordinateInfo
java.lang.Object
|
+--com.remedy.arsys.api.CoordinateInfo
- public class CoordinateInfo
- extends java.lang.Object
The CoordinateInfo class returns the location of a field,
that is, the field's X and Y coordinates.
|
Method Summary |
java.lang.Object |
clone()
Clone implementation that returns an Object with data cloned from self. |
boolean |
equals(java.lang.Object anObject)
Use this method for checking equality of CoordinateInfo. |
long |
getXCoordinate()
Returns X coordinate. |
long |
getYCoordinate()
Returns Y coordinate. |
| Methods inherited from class java.lang.Object |
finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CoordinateInfo
public CoordinateInfo(long a,
long b)
getXCoordinate
public long getXCoordinate()
- Returns X coordinate.
getYCoordinate
public long getYCoordinate()
- Returns Y coordinate.
equals
public boolean equals(java.lang.Object anObject)
- Use this method for checking equality of CoordinateInfo. The result is true if
and only if the argument is not null and is a CoordinateInfo object that represents
the same content.
- Overrides:
equals in class java.lang.Object
clone
public java.lang.Object clone()
- Clone implementation that returns an Object with data cloned from self.
- Overrides:
clone in class java.lang.Object