Guest User

Untitled

a guest
Jan 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. class MagnitudeColor {
  2. private int textColor;
  3. private int circleDrawable;
  4.  
  5. public MagnitudeColor(int textColor, int circleDrawable) {
  6. this.textColor = textColor;
  7. this.circleDrawable = circleDrawable;
  8. }
  9.  
  10. public int getTextColor() {
  11. return textColor;
  12. }
  13.  
  14. public void setTextColor(int textColor) {
  15. this.textColor = textColor;
  16. }
  17.  
  18. public int getCircleDrawable() {
  19. return circleDrawable;
  20. }
  21.  
  22. public void setCircleDrawable(int circleDrawable) {
  23. this.circleDrawable = circleDrawable;
  24. }
  25. }
Add Comment
Please, Sign In to add comment