-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathMenuComponent.java
More file actions
52 lines (42 loc) · 1.51 KB
/
MenuComponent.java
File metadata and controls
52 lines (42 loc) · 1.51 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
package MenuCompositeWithIterator;
import java.util.Iterator;
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();
}
// each Menu and MenuItem will need to implement this method
public Iterator createIterator() {
throw new UnsupportedOperationException();
}
}