-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCoreyScottOrder.java
More file actions
37 lines (30 loc) · 857 Bytes
/
CoreyScottOrder.java
File metadata and controls
37 lines (30 loc) · 857 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
package org.codedifferently;
public class CoreyScottOrder {
private String customer;
private int pickupSlot;
private boolean completed;
private String drink;
public CoreyScottOrder(String customer, int pickupSlot, String drink) {
this.customer = customer;
this.pickupSlot = pickupSlot;
this.drink = drink;
this.completed = false;
}
public int getPickupSlot() {
return pickupSlot;
}
public boolean isCompleted() {
return completed;
}
public void markCompleted() {
completed = true;
}
@Override
public String toString() {
String status = completed ? "Order Ready" : "Preparing Order";
return "Slot: " + pickupSlot +
" | " + drink +
" for " + customer +
" | " + status;
}
}