-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathBat.java
More file actions
84 lines (64 loc) · 1.14 KB
/
Bat.java
File metadata and controls
84 lines (64 loc) · 1.14 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package model;
/**
* @author Misti Christianson - mchristianson
* CIS175 - Spring 2024
* Jan 24, 2024
*/
public class Bat {
private String name;
private String diet;
private int wingSize;
public Bat() {
super();
// TODO Auto-generated constructor stub
}
public Bat(String name, String diet, int wingSize) {
super();
this.name = name;
this.diet = diet;
this.wingSize = wingSize;
}
public String makeNoise() {
return "Screech";
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the diet
*/
public String getDiet() {
return diet;
}
/**
* @param diet the diet to set
*/
public void setDiet(String diet) {
this.diet = diet;
}
/**
* @return the wingSize
*/
public int getWingSize() {
return wingSize;
}
/**
* @param wingSize the wingSize to set
*/
public void setWingSize(int wingSize) {
this.wingSize = wingSize;
}
@Override
public String toString() {
return "Bat [name=" + name + ", diet=" + diet + ", wingSize=" + wingSize + "]";
}
}