Untitled

 avatar
unknown
plain_text
2 years ago
434 B
6
Indexable
public class RaceHorse extends Horse {
    private int racesCompleted;

    public RaceHorse(String name, String color, int birthYear, int racesCompleted) {
        super(name, color, birthYear);
        this.racesCompleted = racesCompleted;
    }

    public int getRacesCompleted() {
        return racesCompleted;
    }

    public void setRacesCompleted(int racesCompleted) {
        this.racesCompleted = racesCompleted;
    }
}
Editor is loading...