-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFish.java
49 lines (44 loc) · 947 Bytes
/
Fish.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
49
public class Fish{
// Private Variables
private boolean isExist;
private boolean isBorder;
private static int amtOfFish;
private int mapDigit;
// Default Constructor
public Fish(){
isExist = false;
isBorder = false;
mapDigit = 0;
}
// Specified Constructor
public Fish(String x){
if(x.equals("border"))
{
isBorder = true;
isExist = false;
mapDigit = 1;
}
else if(x.equals("fish"))
{
isExist = true;
isBorder = false;
amtOfFish++;
mapDigit = 0;
}
}
//Mutator:
// Turns an Unchecked Index From 0 to 2
public void checked(){
mapDigit = 2;
}
//Returners:
public int getCord(){
return mapDigit;
}
public boolean getExist(){
return isExist;
}
public boolean getBorder(){
return isBorder;
}
}