Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. public class MyClass {
  2.  
  3. String str;
  4. Date date;
  5. List<String> list;
  6.  
  7.  
  8. public String getStr() {
  9. return str;
  10. }
  11.  
  12. public void setStr(String str) {
  13. this.str = str;
  14. }
  15.  
  16. public Date getDate() {
  17. return date;
  18. }
  19.  
  20. public void setDate(Date date) {
  21. this.date = date;
  22. }
  23.  
  24. public List<String> getList() {
  25. return list;
  26. }
  27.  
  28. public void setList(List<String> list) {
  29. this.list = list;
  30. }
  31. }

Advertisement
Add Comment
Please, Sign In to add comment
Advertisement