Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. package com.riffsy.util;
  2.  
  3. /**
  4. * Created by FilipMarusca on 27/08/15.
  5. */
  6. public abstract class ReplyHelper {
  7.  
  8. private static boolean gifClickedInFunbox = false;
  9. private static boolean sendButtonPressed = false;
  10. private static boolean viewScrolled = false;
  11. private static boolean autoSendMMS = false;
  12.  
  13. public static boolean isGifClickedInFunbox() {
  14. return gifClickedInFunbox;
  15. }
  16.  
  17. public static void setGifClickedInFunbox(boolean gifClickedInFunbox) {
  18. ReplyHelper.gifClickedInFunbox = gifClickedInFunbox;
  19. }
  20.  
  21. public static boolean isSendButtonPressed() {
  22. return sendButtonPressed;
  23. }
  24.  
  25. public static void setSendButtonPressed(boolean sendButtonPressed) {
  26. ReplyHelper.sendButtonPressed = sendButtonPressed;
  27. }
  28.  
  29. public static boolean isViewScrolled() {
  30. return viewScrolled;
  31. }
  32.  
  33. public static void setViewScrolled(boolean viewScrolled) {
  34. ReplyHelper.viewScrolled = viewScrolled;
  35. }
  36.  
  37. public static boolean isAutoSendMMS() {
  38. return autoSendMMS;
  39. }
  40.  
  41. public static void setAutoSendMMS(boolean autoSendMMS) {
  42. ReplyHelper.autoSendMMS = autoSendMMS;
  43. }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement