imports leaned
[RRRRHHHH_Code] / ruralHouses / src / gui / listOfRemovalRequestsGUI.java
1 package gui;
2
3 import java.awt.Font;
4 import java.awt.Rectangle;
5 import java.awt.event.ActionEvent;
6 import java.awt.event.ActionListener;
7 import java.util.Enumeration;
8 import java.util.Vector;
9
10 import javax.swing.JButton;
11 import javax.swing.JFrame;
12 import javax.swing.JLabel;
13 import javax.swing.JPanel;
14 import javax.swing.JScrollPane;
15 import javax.swing.JTable;
16 import javax.swing.border.EmptyBorder;
17 import javax.swing.table.DefaultTableModel;
18
19 import businessLogic.AdminManager;
20 import businessLogic.HouseManager;
21 import businessLogic.HouseManagerInterface;
22 import domain.RuralHouse;
23
24 public class listOfRemovalRequestsGUI extends JFrame {
25
26         private JPanel contentPane;
27         private JTable table;
28         private DefaultTableModel tableModel;
29         private AdminManager am = new AdminManager();
30         private Vector<RuralHouse> houses;
31         /**
32          * Create the frame.
33          */
34         public listOfRemovalRequestsGUI() {
35                 try {
36                         this.houses= am.getDeletionRequests();
37                         init();
38                 } catch (Exception e) {
39                         e.printStackTrace();
40                 }
41         }
42
43         private void init() throws Exception {
44                 setBounds(100, 100, 600, 450);
45                 contentPane = new JPanel();
46                 contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
47                 setContentPane(contentPane);
48                 contentPane.setLayout(null);
49
50                 JLabel lblNewLabel = new JLabel();
51                 lblNewLabel.setFont(new Font("Tahoma", Font.PLAIN, 27));
52                 lblNewLabel.setBounds(23, 41, 536, 33);
53                 contentPane.add(lblNewLabel);
54                 if (houses.isEmpty())
55                         lblNewLabel.setText("There are not houses matching your search");
56                 else
57                         lblNewLabel.setText("List of houses that match your search:");
58                 JScrollPane scrollPane = new JScrollPane();
59                 scrollPane.setBounds(new Rectangle(45, 305, 320, 116));
60                 scrollPane.setBounds(23, 113, 536, 271);
61                 contentPane.add(scrollPane);
62
63                 table = new JTable() {
64                 private static final long serialVersionUID = 1L;
65
66                 public boolean isCellEditable(int row, int column) {                
67                         return false;               
68                 };
69             };
70                 scrollPane.setViewportView(table);
71                 tableModel = new DefaultTableModel(null, new String[] {
72                                 "House Name", "Bedrooms", "Kitchens", "Baths", "Parkings",
73                                 "Livings" });
74                 
75                 //Maybe there is a better way to avoid interaction.
76                 //table.setEnabled(false);
77                 table.setModel(tableModel);
78                 Enumeration<RuralHouse> en = houses.elements();
79                 RuralHouse rh;
80                 JButton btnNewButton = new JButton("Confirm Deletion");
81                 btnNewButton.addActionListener(new ActionListener() {
82                         public void actionPerformed(ActionEvent e) {
83                                 if (table.getRowCount()!=0) {
84                                         HouseManagerInterface hm = new HouseManager();
85                                         RuralHouse rh = houses.get(table.getSelectedRow());
86                                         //TODO when the house is not added show a warning to the user. Method below returns a boolean stating that.
87                                         hm.removeHouse(rh, rh.getOwner());
88                                         houses.remove(rh);
89                                         am.removeHouseDeletionRequests(rh);
90                                 }
91                         }
92                 });
93                 btnNewButton.setBounds(301, 394, 169, 25);
94                 contentPane.add(btnNewButton);
95                 while (en.hasMoreElements()) {
96                         rh = en.nextElement();
97                         Vector<Object> row = new Vector<Object>();
98                         row.add(rh.getHouseName());
99                         row.add(rh.getFeatures().getnRooms());
100                         row.add(rh.getFeatures().getnKitchens());
101                         row.add(rh.getFeatures().getnBaths());
102                         row.add(rh.getFeatures().getnParkings());
103                         row.add(rh.getFeatures().getnLivings());
104                         tableModel.addRow(row);
105                 }
106
107         }
108 }