You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ReceiveAdapterController.java 690B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package chatprogramm.controller;
  7. import chatprogramm.model.Transmitter;
  8. import chatprogramm.view.ChatView;
  9. import java.util.Observable;
  10. import java.util.Observer;
  11. /**
  12. *
  13. * @author Gerhard
  14. */
  15. public class ReceiveAdapterController implements Observer
  16. {
  17. private ChatView view;
  18. private Transmitter model;
  19. public ReceiveAdapterController(ChatView view, Transmitter model)
  20. {
  21. this.view = view;
  22. this.model = model;
  23. }
  24. @Override
  25. public void update(Observable o, Object arg)
  26. {
  27. }
  28. }