-
Notifications
You must be signed in to change notification settings - Fork 0
/
Leopard.java
48 lines (42 loc) · 919 Bytes
/
Leopard.java
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
45
46
47
48
/*
* Created by Noah Shaw
*/
public class Leopard extends Cat {
//Attributes
private int numberOfSpots;
//Constructors
public Leopard() //Default
{
super();
this.numberOfSpots = 0;
}
public Leopard(String aName, double aWeight, String aMood, int aNumberOfSpots) //Parameter
{
super(aName, aWeight, aMood);
this.setNumberOfSpots(aNumberOfSpots);
}
//Accessors
public int getNumberOfSpots()
{
return this.numberOfSpots;
}
//Mutators
public void setNumberOfSpots(int aNumberOfSpots)
{
if(aNumberOfSpots >= 0)
{
this.numberOfSpots = aNumberOfSpots;
}
}
//Methods
public String toString()
{
return super.toString()+" Number Of Spots: "+this.numberOfSpots;
}
public boolean equals(Leopard aLeopard)
{
return aLeopard != null &&
super.equals(aLeopard) &&
this.numberOfSpots == aLeopard.getNumberOfSpots();
}
}