Back to project page OneSearch.
The source code is released under:
MIT License
If you think the Android project OneSearch 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 chrisjluc.funsearch.wordSearchGenerator.models; /** * Created by chrisjluc on 2014-10-16./*from w w w . j a v a 2 s .c o m*/ */ public class Point { public int x; public int y; public Point(int x, int y){ this.x = x; this.y = y; } public boolean equals(Object o){ if(o == null) return false; Point p = (Point) o; if(x == p.x && y == p.y) return true; return false; } }