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.

TransmitterInterface.java 416B

1234567891011121314151617
  1. /*
  2. * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
  3. * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template
  4. */
  5. package ChatProgramm.model;
  6. import ChatProgramm.model.Nachricht;
  7. /**
  8. *
  9. * @author ahren
  10. */
  11. public interface TransmitterInterface
  12. {
  13. public void send(String txtNachricht);
  14. public Nachricht receive();
  15. }