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.

TransceiverData.java 606B

12345678910111213141516171819202122232425262728293031
  1. package grafikchat.model;
  2. import java.io.Serializable;
  3. /**
  4. * DataPoint for communication between two sockets
  5. *
  6. * @author marian
  7. */
  8. public class TransceiverData implements Serializable
  9. {
  10. private final TransceiverDataEvent e;
  11. private final Object o;
  12. private static final long serialVersionUID = 8582433437601788989L;
  13. public TransceiverData(TransceiverDataEvent e, Object o)
  14. {
  15. this.e = e;
  16. this.o = o;
  17. }
  18. public TransceiverDataEvent getEvent()
  19. {
  20. return this.e;
  21. }
  22. public Object getObject()
  23. {
  24. return this.o;
  25. }
  26. }