summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/Position.java
diff options
context:
space:
mode:
authorBennet Gerlach <bennet_gerlach@web.de>2011-05-09 21:56:29 +0200
committerBennet Gerlach <bennet_gerlach@web.de>2011-05-09 21:56:29 +0200
commit5767486e8317c22eee028606c49f2a4a8909de3c (patch)
tree2301c1555ff7b9978d2259b267e88a3b77f3842a /src/jrummikub/model/Position.java
parentc5374de06f0cf8a2bcf2bd43c4aabaa33cd36d01 (diff)
downloadJRummikub-5767486e8317c22eee028606c49f2a4a8909de3c.tar
JRummikub-5767486e8317c22eee028606c49f2a4a8909de3c.zip
Test simple dropping on Hand
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@198 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/model/Position.java')
-rw-r--r--src/jrummikub/model/Position.java30
1 files changed, 28 insertions, 2 deletions
diff --git a/src/jrummikub/model/Position.java b/src/jrummikub/model/Position.java
index 35cf45e..7396120 100644
--- a/src/jrummikub/model/Position.java
+++ b/src/jrummikub/model/Position.java
@@ -6,6 +6,7 @@ package jrummikub.model;
*/
public class Position {
+
private float x;
private float y;
@@ -13,9 +14,9 @@ public class Position {
* Create a new position by specifying the coordinates
*
* @param x
- * x coordinate
+ * x coordinate
* @param y
- * y coordinate
+ * y coordinate
*/
public Position(float x, float y) {
this.x = x;
@@ -45,4 +46,29 @@ public class Position {
return "Position[x=" + x + ",y=" + y + "]";
}
+ @Override
+ public boolean equals(Object obj) {
+ if (this == obj)
+ return true;
+ if (obj == null)
+ return false;
+ if (getClass() != obj.getClass())
+ return false;
+ Position other = (Position) obj;
+ if (Float.floatToIntBits(x) != Float.floatToIntBits(other.x))
+ return false;
+ if (Float.floatToIntBits(y) != Float.floatToIntBits(other.y))
+ return false;
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + Float.floatToIntBits(x);
+ result = prime * result + Float.floatToIntBits(y);
+ return result;
+ }
+
}