Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard

Diff Revisions 66f0c8 ... vs e2ae30 ... for ruralHouses/src/gui/listOfAdditionRequestsGUI.java

Diff revisions: vs.
  @@ -1,42 +1,25 @@
1 1 package gui;
2 2
3 - import java.awt.BorderLayout;
4 - import java.awt.EventQueue;
5 -
6 - import domain.*;
7 -
8 - import javax.swing.JFrame;
9 - import javax.swing.JPanel;
10 - import javax.swing.border.EmptyBorder;
11 - import javax.swing.JLabel;
12 -
13 3 import java.awt.Font;
14 -
15 - import javax.swing.JTextField;
16 - import javax.swing.JScrollPane;
17 -
18 4 import java.awt.Rectangle;
19 -
20 - import javax.swing.JTable;
21 - import javax.swing.table.DefaultTableModel;
22 -
23 - import java.awt.Component;
24 - import java.awt.event.MouseAdapter;
25 - import java.awt.event.MouseEvent;
26 - import java.sql.Date;
5 + import java.awt.event.ActionEvent;
6 + import java.awt.event.ActionListener;
27 7 import java.util.Enumeration;
28 - import java.util.LinkedList;
29 8 import java.util.Vector;
30 9
31 - import javax.swing.Box;
32 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;
33 18
34 19 import businessLogic.AdminManager;
35 20 import businessLogic.HouseManager;
36 21 import businessLogic.HouseManagerInterface;
37 -
38 - import java.awt.event.ActionListener;
39 - import java.awt.event.ActionEvent;
22 + import domain.RuralHouse;
40 23
41 24 public class listOfAdditionRequestsGUI extends JFrame {
42 25