
test.net.ob3d.domainmodel.RankingPosition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neodatis-odb Show documentation
Show all versions of neodatis-odb Show documentation
The NeoDatis Object Database
package net.ob3d.domainmodel;
public class RankingPosition {
int rank;
PlayerInfo boxer;
public int getRank() {
return rank;
}
public RankingPosition(PlayerInfo playerInfo, int rank) {
super();
this.boxer = playerInfo;
this.rank = rank;
// TODO Auto-generated constructor stub
}
public void setRank(int rank) {
this.rank = rank;
}
public PlayerInfo getBoxer() {
return boxer;
}
public void setBoxer(PlayerInfo boxer) {
this.boxer = boxer;
}
@Override
public String toString() {
// TODO Auto-generated method stub
return getRank() + ":" + getBoxer();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy