Back to project page iSlide.
The source code is released under:
MIT License
If you think the Android project iSlide 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 edu.csun.group2.islide.engine; //from w ww . j a v a2 s . com class Pair { public Board board; public int index; Pair(int _index, Board _board) { board = new Board(_board); index = _index; } public boolean Equals(Object o) { if(this == o) return true; else { Pair p = (Pair)o; if (p.index == this.index && p.board.hashCode() == this.board.hashCode()) return true; } return false; } }