Back to project page bluedroid-mp.
The source code is released under:
Apache License
If you think the Android project bluedroid-mp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package uk.ac.gcu.bluedroid.util; //from w ww . j a va2s .c o m public class Node { int x, y; public Node(int i, int j) { x = i; y = j; } public boolean equals(Object obj) { if(obj instanceof Node) { Node n = (Node) obj; return (x == n.x && y == n.y); } else return false; } }