-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMenu.java
76 lines (58 loc) · 1.63 KB
/
Menu.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package poo;
import java.util.Arrays;
import java.util.InputMismatchException;
import java.util.List;
import java.util.Scanner;
public class Menu {
private List<String> opcoes;
private int op;
/**
*CONSTRUTOR VAZIO
*/
public Menu(String [] opcoes) {
this.opcoes = Arrays.asList(opcoes);
this.op = -1;
}
public int getOpcao() {
return this.op;
}
/**
* Método para apresentar o menu e ler opção.
*/
public void executa() {
do {
showMenu();
this.op = lerOpcao();
} while (this.op == -1);
}
/** Apresentar o menu */
private void showMenu() {
System.out.println("\n MENU:");
System.out.println("**********************");
System.out.println("**********************\n");
System.out.println("Escolha a funcionalidade a que pretende aceder:");
for (int i=0; i<this.opcoes.size(); i++) {
System.out.print(i+1);
System.out.print(" - ");
System.out.println(this.opcoes.get(i));
}
System.out.println("Para fechar e guardar a aplicacao digite 0.");
}
/** Ler uma opção válida */
private int lerOpcao() {
int op;
Scanner is = new Scanner(System.in);
System.out.print("Opção: ");
try {
op = is.nextInt();
}
catch (InputMismatchException e) { //caso não tenhamos escrito um inteiro
op = -1;
}
if (op<0 || op>this.opcoes.size()) {
System.out.println("Opção Inválida!!!");
op = -1;
}
return op;
}
}