18 lines
297 B
Java
18 lines
297 B
Java
package utils;
|
|
|
|
public class ReceiptDecorator {
|
|
boolean received;
|
|
|
|
public ReceiptDecorator() {
|
|
this.received = false;
|
|
}
|
|
|
|
public boolean isReceived() {
|
|
return received;
|
|
}
|
|
|
|
public void setReceived(boolean received) {
|
|
this.received = received;
|
|
}
|
|
}
|