Back to project page SeeKampf.
The source code is released under:
GNU General Public License
If you think the Android project SeeKampf 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 net.avedo.seekampf.models; /*from w w w. jav a2 s. c o m*/ public class Auction extends BaseModel { private String anbieter; private int gold; private int stein; private int holz; private long time; private String was; private int anzahl; private int status; public String getAnbieter() { return anbieter; } public void setAnbieter(String anbieter) { this.anbieter = anbieter; } public int getGold() { return gold; } public void setGold(int gold) { this.gold = gold; } public int getStein() { return stein; } public void setStein(int stein) { this.stein = stein; } public int getHolz() { return holz; } public void setHolz(int holz) { this.holz = holz; } public long getTime() { return time; } public void setTime(long time) { this.time = time; } public String getWas() { return was; } public void setWas(String was) { this.was = was; } public int getAnzahl() { return anzahl; } public void setAnzahl(int anzahl) { this.anzahl = anzahl; } public int getStatus() { return status; } public void setStatus(int status) { this.status = status; } }