suppression des fichiers .class
This commit is contained in:
parent
935125c083
commit
9d8032a0cd
9 changed files with 4 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1,3 @@
|
||||||
/bin/
|
/bin/
|
||||||
|
*.jar
|
||||||
|
*.class
|
||||||
|
|
Binary file not shown.
|
@ -286,7 +286,7 @@ public class ClientWindow implements ActionListener {
|
||||||
chatText = new JTextArea(1,1);
|
chatText = new JTextArea(1,1);
|
||||||
textScroll = new JScrollPane(chatText);
|
textScroll = new JScrollPane(chatText);
|
||||||
|
|
||||||
sendPanel = new JPanel(new GridLayout(1, 2));
|
sendPanel = new JPanel(new BorderLayout(1, 2));
|
||||||
messageField = new JTextField();
|
messageField = new JTextField();
|
||||||
sendButton = new JButton("Envoyer");
|
sendButton = new JButton("Envoyer");
|
||||||
sendButton.addActionListener(this);
|
sendButton.addActionListener(this);
|
||||||
|
@ -294,7 +294,7 @@ public class ClientWindow implements ActionListener {
|
||||||
|
|
||||||
|
|
||||||
sendPanel.add(messageField);
|
sendPanel.add(messageField);
|
||||||
sendPanel.add(sendButton);
|
sendPanel.add(sendButton, BorderLayout.EAST);
|
||||||
|
|
||||||
chatWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
chatWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue