diff --git a/out/production/FI_PRJ/Test/ProfView$1.class b/out/production/FI_PRJ/Test/ProfView$1.class index 0ef04a8..4aaa0ec 100644 Binary files a/out/production/FI_PRJ/Test/ProfView$1.class and b/out/production/FI_PRJ/Test/ProfView$1.class differ diff --git a/out/production/FI_PRJ/Test/ProfView$2.class b/out/production/FI_PRJ/Test/ProfView$2.class index be1d414..09dc91f 100644 Binary files a/out/production/FI_PRJ/Test/ProfView$2.class and b/out/production/FI_PRJ/Test/ProfView$2.class differ diff --git a/out/production/FI_PRJ/Test/ProfView$3.class b/out/production/FI_PRJ/Test/ProfView$3.class index 7f9bb28..c1b11a0 100644 Binary files a/out/production/FI_PRJ/Test/ProfView$3.class and b/out/production/FI_PRJ/Test/ProfView$3.class differ diff --git a/out/production/FI_PRJ/Test/ProfView$4.class b/out/production/FI_PRJ/Test/ProfView$4.class index 38f8802..f996b4f 100644 Binary files a/out/production/FI_PRJ/Test/ProfView$4.class and b/out/production/FI_PRJ/Test/ProfView$4.class differ diff --git a/out/production/FI_PRJ/Test/ProfView.class b/out/production/FI_PRJ/Test/ProfView.class index 2f33a85..3cc714e 100644 Binary files a/out/production/FI_PRJ/Test/ProfView.class and b/out/production/FI_PRJ/Test/ProfView.class differ diff --git a/src/Test/ProfView.java b/src/Test/ProfView.java index 7032f78..0fcec3f 100644 --- a/src/Test/ProfView.java +++ b/src/Test/ProfView.java @@ -2,11 +2,20 @@ package Test; import API.*; import MNP.*; - -import java.awt.*; -import java.awt.event.*; +import javax.swing.JComboBox; +import javax.swing.JTextField; +import javax.swing.JButton; +import javax.swing.JLabel; +import javax.swing.JTable; +import javax.swing.JScrollPane; +import java.awt.Dimension; +import java.awt.Insets; +import java.awt.GridBagConstraints; +import java.awt.event.ActionListener; +import java.awt.event.ActionEvent; +import java.awt.event.KeyAdapter; +import java.awt.event.KeyEvent; import java.util.ArrayList; -import javax.swing.*; public class ProfView extends BFrame implements ActionListener { private final ArrayList e; @@ -51,6 +60,7 @@ public class ProfView extends BFrame implements ActionListener { this.add(gs, settings); settings.setPositionY(3); + settings.setPadding(new Insets(0, 0, 0, 50)); String[] groupeList = new String[this.g.size()]; for(int i = 0; i <= this.g.size()-1; i++) { @@ -62,6 +72,7 @@ public class ProfView extends BFrame implements ActionListener { this.add(groupeOption, settings); settings.setPositionY(3); + settings.setPadding(new Insets(0, 0, 0, 0)); settings.setAnchor(GridBagConstraints.EAST); JButton confirm = new JButton("Rechercher"); confirm.setActionCommand("fi::GetListFiltered"); @@ -78,6 +89,7 @@ public class ProfView extends BFrame implements ActionListener { this.add(pf, settings); settings.setPositionY(6); + settings.setPadding(new Insets(0, 0, 0, 50)); this.text = new JTextField(); this.text.setPreferredSize(new Dimension(110, 30)); text.addKeyListener(new KeyAdapter() { @@ -89,6 +101,7 @@ public class ProfView extends BFrame implements ActionListener { this.add(this.text, settings); settings.setPositionY(6); + settings.setPadding(new Insets(0, 0, 0, 0)); settings.setAnchor(GridBagConstraints.EAST); JButton searchTLetters = new JButton("Rechercher"); searchTLetters.addActionListener(this); diff --git a/src/Test/TestTexteMNP.java b/src/Test/TestTexteMNP.java index 7c5a193..44b4f46 100644 --- a/src/Test/TestTexteMNP.java +++ b/src/Test/TestTexteMNP.java @@ -2,7 +2,7 @@ package Test; import API.*; import MNP.*; -import java.util.*; +import java.util.ArrayList; public class TestTexteMNP { public static void main(String[] args) {