Guest User

Untitled

a guest
Feb 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. package com.example.android.historyapp2;
  2.  
  3. public class Quest {
  4. private String name;
  5. private int rate;
  6. private int imageUrl;
  7.  
  8. public Quest(String name, int rate, int imageUrl) {
  9. this.name = name;
  10. this.rate = rate;
  11. this.imageUrl = imageUrl;
  12. }
  13.  
  14. public Quest(String name) {
  15. this.name = name;
  16. this.rate = -1;
  17. this.imageUrl = -1;
  18. }
  19.  
  20. public String getName() {
  21. return name;
  22. }
  23.  
  24. public int getRate() {
  25. return rate;
  26. }
  27.  
  28. public int getImageUrl() {
  29. return imageUrl;
  30. }
  31. }
Add Comment
Please, Sign In to add comment