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; //ww w .j a v a 2s . com public class Image { int co_id,weight; String name; public Image(int co_id, int weight, String name) { super(); this.co_id = co_id; this.weight = weight; this.name = name; } public int getCo_id() { return co_id; } public void setCo_id(int co_id) { this.co_id = co_id; } public int getWeight() { return weight; } public void setWeight(int weight) { this.weight = weight; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public String toString() { return "Image [co_id=" + co_id + ", weight=" + weight + ", name=" + name + "]"; } }