Back to project page downtown.
The source code is released under:
GNU General Public License
If you think the Android project downtown 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 org.dklisiaris.downtown.db; /* w ww .j a va 2 s . c o m*/ public class Mapping { int id1, id2; public Mapping(int id1, int id2) { super(); this.id1 = id1; this.id2 = id2; } public int getId1() { return id1; } public void setId1(int id1) { this.id1 = id1; } public int getId2() { return id2; } public void setId2(int id2) { this.id2 = id2; } @Override public String toString() { return "Mapping [id1=" + id1 + ", id2=" + id2 + "]"; } }