Advertisement
Guest User

controle interface

a guest
Oct 31st, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package interfaces;
  2.  
  3. import model.Message;
  4. import model.CameraResponse;
  5.  
  6. /**
  7. * Created by Steven on 30-10-2014.
  8. */
  9. public interface Controle {
  10.  
  11. public void addMessageAndResponse(Message m, Response c);
  12. public void checkIfIllegal();
  13. public void setTypeResponse(Response r);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement