The bug found in the presentation that we forgot to review has been fixed
[RRRRHHHH_Code] / ruralHouses / src / gui / AdminMenuGUI.java
diff --git a/ruralHouses/src/gui/AdminMenuGUI.java b/ruralHouses/src/gui/AdminMenuGUI.java
deleted file mode 100644 (file)
index f8d9d85..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-package gui;
-
-import java.awt.Frame;
-
-import javax.swing.JFrame;
-import javax.swing.JPanel;
-import javax.swing.border.EmptyBorder;
-import javax.swing.GroupLayout;
-import javax.swing.GroupLayout.Alignment;
-import javax.swing.JButton;
-
-import java.awt.event.ActionListener;
-import java.awt.event.ActionEvent;
-
-public class AdminMenuGUI extends JFrame {
-
-       /**
-        * 
-        */
-       private static final long serialVersionUID = 1L;
-       private JPanel contentPane;
-
-
-       public static void main(String[] args){
-               Frame a = new AdminMenuGUI();
-               a.setVisible(true);
-       }
-       /**
-        * Create the frame.
-        */
-       public AdminMenuGUI() {
-               
-               
-               
-               this.setTitle("Owner Menu");
-               this.getContentPane().setLayout(null);
-               setBounds(100, 100, 450, 473);
-               contentPane = new JPanel();
-               contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
-               setContentPane(contentPane);
-               //TODO BOTH BUTTONS ARE TO MODIFY
-               JButton btnAdd = new JButton("Add Requests");
-               btnAdd.addActionListener(new ActionListener() {
-                       public void actionPerformed(ActionEvent e) {
-                               Frame a = new listOfAdditionRequestsGUI();
-                               a.setVisible(true);
-                       }
-               });
-               
-               JButton btnDel = new JButton("Delete Requests");
-               btnDel.addActionListener(new ActionListener() {
-                       public void actionPerformed(ActionEvent e) {
-                               Frame a = new listOfRemovalRequestsGUI();
-                               a.setVisible(true);
-                       }
-               });
-               GroupLayout gl_contentPane = new GroupLayout(contentPane);
-               gl_contentPane.setHorizontalGroup(
-                       gl_contentPane.createParallelGroup(Alignment.LEADING)
-                               .addGroup(gl_contentPane.createSequentialGroup()
-                                       .addGap(115)
-                                       .addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING)
-                                               .addComponent(btnDel, GroupLayout.PREFERRED_SIZE, 164, GroupLayout.PREFERRED_SIZE)
-                                               .addComponent(btnAdd, GroupLayout.PREFERRED_SIZE, 164, GroupLayout.PREFERRED_SIZE))
-                                       .addContainerGap(145, Short.MAX_VALUE))
-               );
-               gl_contentPane.setVerticalGroup(
-                       gl_contentPane.createParallelGroup(Alignment.LEADING)
-                               .addGroup(gl_contentPane.createSequentialGroup()
-                                       .addGap(62)
-                                       .addComponent(btnAdd, GroupLayout.PREFERRED_SIZE, 81, GroupLayout.PREFERRED_SIZE)
-                                       .addGap(58)
-                                       .addComponent(btnDel, GroupLayout.PREFERRED_SIZE, 81, GroupLayout.PREFERRED_SIZE)
-                                       .addContainerGap(142, Short.MAX_VALUE))
-               );
-               contentPane.setLayout(gl_contentPane);
-       }
-
-}