diff --git a/src/chatprogramm/controller/ConnectController.java b/src/chatprogramm/controller/ConnectController.java new file mode 100644 index 0000000..9339fca --- /dev/null +++ b/src/chatprogramm/controller/ConnectController.java @@ -0,0 +1,26 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +package chatprogramm.controller; + +import chatprogramm.model.Transmitter; +import chatprogramm.view.ChatView; + +/** + * + * @author Gerhard + */ +public class ConnectController +{ + private ChatView view; + private Transmitter model; + + public ConnectController(ChatView view, Transmitter model) + { + this.view = view; + this.model = model; + } +} diff --git a/src/chatprogramm/controller/ReceiveAdapterController.java b/src/chatprogramm/controller/ReceiveAdapterController.java new file mode 100644 index 0000000..316b1f1 --- /dev/null +++ b/src/chatprogramm/controller/ReceiveAdapterController.java @@ -0,0 +1,33 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +package chatprogramm.controller; + +import chatprogramm.model.Transmitter; +import chatprogramm.view.ChatView; +import java.util.Observable; +import java.util.Observer; + +/** + * + * @author Gerhard + */ +public class ReceiveAdapterController implements Observer +{ + private ChatView view; + private Transmitter model; + + public ReceiveAdapterController(ChatView view, Transmitter model) + { + this.view = view; + this.model = model; + } + + @Override + public void update(Observable o, Object arg) + { + } +} diff --git a/src/chatprogramm/controller/SendController.java b/src/chatprogramm/controller/SendController.java new file mode 100644 index 0000000..35cb005 --- /dev/null +++ b/src/chatprogramm/controller/SendController.java @@ -0,0 +1,26 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +package chatprogramm.controller; + +import chatprogramm.model.Transmitter; +import chatprogramm.view.ChatView; + +/** + * + * @author Gerhard + */ +public class SendController +{ + private ChatView view; + private Transmitter model; + + public SendController(ChatView view, Transmitter model) + { + this.view = view; + this.model = model; + } +}