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.

SendController.java 526B

1234567891011121314151617181920212223242526
  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. /**
  10. *
  11. * @author Gerhard
  12. */
  13. public class SendController
  14. {
  15. private ChatView view;
  16. private Transmitter model;
  17. public SendController(ChatView view, Transmitter model)
  18. {
  19. this.view = view;
  20. this.model = model;
  21. }
  22. }