
test.net.ob3d.domainmodel.ScoreCard 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;
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