|
6 | 6 | import java.util.Set;
|
7 | 7 |
|
8 | 8 | public final class Menu extends BaseMenu<Menu> {
|
9 |
| - Menu(int rows, String title, EnumSet<Modifier> modifiers, boolean colorize) { |
| 9 | + public Menu(int rows, String title, EnumSet<Modifier> modifiers, boolean colorize) { |
10 | 10 | super(rows, title, modifiers, colorize);
|
11 | 11 | }
|
12 | 12 |
|
13 |
| - Menu(int rows, String title, EnumSet<Modifier> modifiers) { |
| 13 | + public Menu(int rows, String title, EnumSet<Modifier> modifiers) { |
14 | 14 | super(rows, title, modifiers);
|
15 | 15 | }
|
16 | 16 |
|
17 |
| - Menu(MenuType type, String title, EnumSet<Modifier> modifiers) { |
| 17 | + public Menu(MenuType type, String title, EnumSet<Modifier> modifiers) { |
18 | 18 | super(type, title, modifiers);
|
19 | 19 | }
|
20 | 20 |
|
21 |
| - Menu(MenuType type, String title, EnumSet<Modifier> modifiers, boolean colorize) { |
| 21 | + public Menu(int rows, String title) { |
| 22 | + super(rows, title, EnumSet.noneOf(Modifier.class)); |
| 23 | + } |
| 24 | + |
| 25 | + public Menu(MenuType type, String title) { |
| 26 | + super(type, title, EnumSet.noneOf(Modifier.class)); |
| 27 | + } |
| 28 | + |
| 29 | + public Menu(MenuType type, String title, EnumSet<Modifier> modifiers, boolean colorize) { |
22 | 30 | super(type, title, modifiers, colorize);
|
23 | 31 | }
|
24 | 32 | }
|
0 commit comments