-
Notifications
You must be signed in to change notification settings - Fork 23
/
MenuComponent.java
45 lines (37 loc) · 1.3 KB
/
MenuComponent.java
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
package MenuComposite;
public abstract class MenuComponent {
/*
provides default implementations for every method
because some of these methods only make sense for MenuItems
and some only for Menus,
the default implementation is UnsupportedOperationException
*/
// we have grouped together the "composite" methods (add, remove and get)
public void add(MenuComponent menuComponent) {
throw new UnsupportedOperationException();
}
public void remove(MenuComponent menuComponent) {
throw new UnsupportedOperationException();
}
public MenuComponent getChild(int i) {
throw new UnsupportedOperationException();
}
// the "operation" methods used by the MenuItems
public String getName() {
throw new UnsupportedOperationException();
}
public String getDescription() {
throw new UnsupportedOperationException();
}
public double getPrice() {
throw new UnsupportedOperationException();
}
public boolean isVegetarian() {
throw new UnsupportedOperationException();
}
// is an operation method that both Menu and MenuItems will implement
// we provide a default operation here
public void print() {
throw new UnsupportedOperationException();
}
}