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

net.java.ao.it.model.Score Maven / Gradle / Ivy

There is a newer version: 6.1.1
Show newest version
package net.java.ao.it.model;

import net.java.ao.Entity;
import net.java.ao.OneToMany;


public interface Score extends Entity {
    String getPlayer();
    void setPlayer(String competitor);

    String getGame();
    void setGame(String game);

    void setScore(int score);
    int getScore();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy