Guest User

Untitled

a guest
Mar 31st, 2016
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. /**
  2.  *
  3.  * @author Jure
  4.  */
  5. public abstract class CallbackATCommand
  6. {
  7.     public abstract void onSuccess(String response);  
  8.     public abstract void onFailure(String response);  
  9.     public abstract void onError(String response);
  10. }
Add Comment
Please, Sign In to add comment