Hi,
Im really new to java and i need to make methods for this menu.
But before i start i want to get the “menu” to come up when i click run in netbeans.
Ive added a main class, and it says its built successfully but it doesnt prompt any output
can anyone help me with this? I am totally confused?
Ive attached the code below:confused:
[COLOR=“Navy”]package students;
public class Main {
public static void main(String[] args){
}
private final static String[] mainMenuOpts = {"Students","Lecturers","Admin","Exit"};
private final static String[] studentMenuOpts = {"Add Student","List all Students","Find a Student","Return to Main Menu"};
private Menu mainMenu = new Menu("MAIN MENU",mainMenuOpts);
private Menu studentMenu = new Menu("STUDENT MENU",studentMenuOpts);
private DataStore data = new DataStore();
private java.io.PrintStream out = System.out;
private ReadKb reader = new ReadKb();
/** Creates a new instance of Main */
public Main() {
run();
}
private void run(){
int ret = mainMenu.display();
while(true){
switch(ret){
case 1: students();break;
case 2: lecturers(); break;
case 3: admin(); break;
case 4: exit(); break;
}
ret = mainMenu.display();
}
}
private void students(){
int ret = studentMenu.display();
while(ret != 4){
switch(ret){
case 1: addStudent();break;
case 2: listStudents(); break;
case 3: findStudent(); break;
}
ret = studentMenu.display();
}
}
private void lecturers(){
out.println("\
Lecturers not yet implemented");
}
private void admin(){
out.println("
Admin not yet implemented");
}
//Student methods
private void addStudent(){
out.println("
\ Add New Student");
//prompt for details
//add student to the datastore
//ask if they want to enter another student -
// if so call addStudent again
//otherwise the method completes and the studentMenu will display again
}
private void listStudents(){
out.println("\
\ Student Listing");
//list all students from the datastore
}
private void findStudent(){
out.println("
\ Find Student");
out.print("Enter Search String: ");
//reasd search text
//use datastore method to get list of students that contain the search string
//display matching students
}
// end Student methods
private void exit() {
data.save(); //call the datastore method that will save to file
out.println("\
Goodbye :)");
System.exit(0);
}
}[/COLOR]