-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOkapi.java
More file actions
44 lines (33 loc) · 924 Bytes
/
Copy pathOkapi.java
File metadata and controls
44 lines (33 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
public class Okapi extends Animal implements Running
{
int numStripes;
public Okapi(int numStripes)
{
super("Okapi", "The okapi also known as the forest giraffe \n" +
"or zebra giraffe, is an artiodactyl mammal native to the northeast \n" +
"of the Democratic Republic of the Congo in Central Africa.");
this.numStripes = numStripes;
}
@Override
public String play(){
return "The okapi plays with a ball";
}
@Override
public String eat(){
return "The okapi happily eats the grass";
}
@Override
public String makeNoise(){
return "The okapi happily eats the grass";
}
@Override
public String run(){
return "*gallop* *gallop*";
}
public int getStripes(){
return numStripes;
}
public void earnYourStripes(){
numStripes++;
}
}