Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard

Diff Revisions 5761bc ... vs 520867 ... for ruralHouses/src/gui/DeleteOfferGUI.java

Diff revisions: vs.
  @@ -6,8 +6,6 @@
6 6 import java.awt.event.ItemListener;
7 7 import java.util.Vector;
8 8
9 - import javax.swing.GroupLayout;
10 - import javax.swing.GroupLayout.Alignment;
11 9 import javax.swing.JButton;
12 10 import javax.swing.JComboBox;
13 11 import javax.swing.JFrame;
  @@ -20,8 +18,6 @@
20 18 import domain.Offer;
21 19 import domain.Owner;
22 20 import domain.RuralHouse;
23 - import javax.swing.LayoutStyle.ComponentPlacement;
24 - import javax.swing.JTextField;
25 21
26 22 public class DeleteOfferGUI extends JFrame {
27 23
  @@ -59,10 +55,10 @@
59 55 }
60 56
61 57 JRadioButton rdbtnIAmSure = new JRadioButton("I am sure");
62 - rdbtnIAmSure.setBounds(101, 134, 71, 23);
58 + rdbtnIAmSure.setBounds(101, 134, 108, 23);
63 59
64 60 btnDelete = new JButton("DELETE");
65 - btnDelete.setBounds(92, 226, 69, 23);
61 + btnDelete.setBounds(92, 226, 117, 23);
66 62 btnDelete.setEnabled(false);
67 63
68 64 comboBox.addItemListener(new ItemListener() {
  @@ -108,7 +104,7 @@
108 104 contentPane.add(comboBox_1);
109 105
110 106 feedback = new JLabel("");
111 - feedback.setBounds(140, 178, 155, 23);
107 + feedback.setBounds(140, 178, 202, 23);
112 108 contentPane.add(feedback);
113 109
114 110 btnDelete.addActionListener(new ActionListener() {