-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDish.java
More file actions
40 lines (27 loc) · 795 Bytes
/
Copy pathDish.java
File metadata and controls
40 lines (27 loc) · 795 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
import java.util.Locale;
public class Dish {
private int costInCents;
private String nameOfDish;
private boolean wouldRecommend;
public void printSummary() {
System.out.printf("Cost: %d\nName: %s\nRecommended: %s", costInCents / 100, nameOfDish, wouldRecommend);
}
public int getCost(){
return this.costInCents;
}
public void setCost(int newCost){
this.costInCents = newCost;
}
public String getNameOfDish(){
return this.nameOfDish;
}
public void setNewName(String newName){
this.nameOfDish = newName;
}
public boolean getRecommend(){
return this.wouldRecommend;
}
public void setWouldRecommend(boolean newRecommend){
this.wouldRecommend = newRecommend;
}
}