-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCat.java
More file actions
76 lines (65 loc) · 1.16 KB
/
Cat.java
File metadata and controls
76 lines (65 loc) · 1.16 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
package model;
public class Cat {
private Integer age;
private String name;
private String breed;
public Cat() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param age
* @param name
* @param length
*/
public Cat(Integer age, String name, String breed) {
super();
this.age = age;
this.name = name;
this.breed = breed;
}
/**
* @return the age
*/
public Integer getAge() {
return age;
}
/**
* @param age the age to set
*/
public void setAge(Integer age) {
this.age = age;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the breed
*/
public String getBreed() {
return breed;
}
/**
* @param breed the breed to set
*/
public void setLength(String breed) {
this.breed = breed;
}
@Override
public String toString() {
// TODO Auto-generated method stub
return "Cat [name=" + name + ", breed=" + breed + ", age=" + age + "]";
}
public String makeNoise() {
return "Meow!";
}
}