Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Book {
  4. private int index;
  5. private int score;
  6.  
  7. public Book(int index, int score) {
  8. this.index = index;
  9. this.score = score;
  10. }
  11.  
  12. public int getIndex() {
  13. return index;
  14. }
  15.  
  16. public void setIndex(int index) {
  17. this.index = index;
  18. }
  19.  
  20. public int getScore() {
  21. return score;
  22. }
  23.  
  24. public void setScore(int score) {
  25. this.score = score;
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement