-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDriver.java
60 lines (53 loc) · 1.39 KB
/
Driver.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
import java.io.IOException;
/** This is the main of the program.
* Librarians will be interacting with the programme form here.
*
* @author b1014963 , Abdul Al-FARAJ
* @Date 30/10/2012
*/
public class Driver {
public static void main(String[] args) throws IOException {
Library library = new Library();
library.loadBooksUsers();
boolean finished = false;
char uniqueChar;
while (!finished)
{
printMenu();
uniqueChar = library.getChar();
switch (uniqueChar)
{
case 'f':
System.out.println("Library is terminated");
finished=true;
System.exit(0);
case 'b':
library.printBooks();
break;
case 'u':
library.printUsers();
break;
case 'i':
library.issueBook();
break;
case 'r':
library.returnBook();
break;
default:
System.out.println("Invalid instruction, please try again.");
}
}
}
private static void printMenu()
{
System.out.println("\n***************************************************" +
"\nWelcome To The Library"+
"\nPlease choosing one of the following:" +
"\n f - to finish running the program" +
"\n b - Display Books"+
"\n u - Display Users" +
"\n i - Issue books and update the library" +
"\n r - Return books and update the library"
+"\n***************************************************");
}
}