tabbedPanel = new JTabbedPane();
add(tabbedPanel);
tabbedPanel.addTab("Add/Remove Student", null, panel1, "Accepts a student into the database");
tabbedPanel.addTab("Calculate Grades", null, panel4, "Displays the student's grades");
//tabbedPanel.addTab("Manage Students", null, panel3, "Manages students");
tabbedPanel.addTab("Student Info", null, panel5, "Gets student Info");
tabbedPanel.addTab("Add/Remove Teacher", null, panel2, "Hires/Fires a Teacher");
tabbedPanel.addTab("Teacher Info", null, panel6, "Displays info on Teachers");
tabbedPanel.addTab("Edit Teachers", null, panel7, "Manages Teachers");
primary = new JPanel();
primary.setBackground (Color.white);
primary.setPreferredSize (new Dimension(500, 675));
primary.setLayout( new BorderLayout() );
primary.add( tabbedPanel, BorderLayout.CENTER ); |