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; /* w ww . j a v a 2s. co m*/ public class Alliance extends BaseModel { private String name; private String kuerzel; private int punkte; private int punkte_vortag; private int platzierung; private int platzierung_vortag; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getKuerzel() { return kuerzel; } public void setKuerzel(String kuerzel) { this.kuerzel = kuerzel; } public int getPunkte() { return punkte; } public void setPunkte(int punkte) { this.punkte = punkte; } public int getPunkte_vortag() { return punkte_vortag; } public void setPunkte_vortag(int punkte_vortag) { this.punkte_vortag = punkte_vortag; } public int getPlatzierung() { return platzierung; } public void setPlatzierung(int platzierung) { this.platzierung = platzierung; } public int getPlatzierung_vortag() { return platzierung_vortag; } public void setPlatzierung_vortag(int platzierung_vortag) { this.platzierung_vortag = platzierung_vortag; } }