aktuellster Stand nach Stunde

This commit is contained in:
ahren 2023-12-12 13:21:07 +01:00
parent 0548fee0a4
commit 3604e5469e

View File

@ -5,15 +5,22 @@
package ChatProgramm.controller.commands; package ChatProgramm.controller.commands;
import ChatProgramm.util.OhmLogger;
import ChatProgramm.view.ChatView;
import java.util.logging.Logger;
import javax.swing.JTextField;
/** /**
* *
* @author ahren * @author ahren
*/ */
public class CommandSend implements CommandInterface public class CommandSend implements CommandInterface
{ {
public CommandSend() private static Logger lg = OhmLogger.getLogger();
private JTextField tfNachricht;
public CommandSend(ChatView view)
{ {
tfNachricht = view.getTfNachricht();
} }
@Override @Override