Back to project page RUflow.
The source code is released under:
GNU General Public License
If you think the Android project RUflow 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 is.ru.app; /*from w ww. jav a 2 s . c om*/ /** * Created by olafurn on 9.9.2014. */ public class Coordinate { private int m_col; private int m_row; Coordinate (int col, int row) { m_col = col; m_row = row; } public int getCol() { return m_col; } public int getRow() { return m_row; } @Override public boolean equals(Object other) { if(!(other instanceof Coordinate)) { return false; } Coordinate otherCo = (Coordinate) other; return otherCo.getCol() == this.getCol() && otherCo.getRow() == this.getRow(); } }