|
@@ -1,4 +1,4 @@
|
|
|
-package client;
|
|
|
+package eu.tankernn.chat.client;
|
|
|
|
|
|
import java.awt.BorderLayout;
|
|
|
import java.awt.Dimension;
|
|
@@ -31,9 +31,9 @@ import javax.swing.ListSelectionModel;
|
|
|
import javax.swing.WindowConstants;
|
|
|
import javax.swing.border.EmptyBorder;
|
|
|
|
|
|
-import common.InfoPacket;
|
|
|
-import common.MessagePacket;
|
|
|
-import common.MessagePacket.MessageType;
|
|
|
+import eu.tankernn.chat.common.InfoPacket;
|
|
|
+import eu.tankernn.chat.common.MessagePacket;
|
|
|
+import eu.tankernn.chat.common.MessagePacket.MessageType;
|
|
|
|
|
|
@SuppressWarnings("serial")
|
|
|
public class ChatWindow extends JFrame implements ActionListener, Runnable, KeyListener {
|
|
@@ -241,4 +241,8 @@ public class ChatWindow extends JFrame implements ActionListener, Runnable, KeyL
|
|
|
@Override
|
|
|
public void keyTyped(KeyEvent arg0) {
|
|
|
}
|
|
|
+
|
|
|
+ public boolean isConnected() {
|
|
|
+ return so.isConnected() && !so.isClosed();
|
|
|
+ }
|
|
|
}
|