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

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

There is a newer version: 1.9.30.689
Show newest version
package net.ob3d.domainmodel;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

public class ScoreCard implements Serializable {
	private List scores = new ArrayList();

	public List getScores() {
		return scores;
	}

	public void setScores(List scores) {
		this.scores = scores;
	}

	public void addScore(Score score) {
		scores.add(score);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy