All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.net.ob3d.domainmodel.RankingPosition Maven / Gradle / Ivy

There is a newer version: 1.9.30.689
Show newest version
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