Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Book {
  2.  
  3. public String author;
  4. public String title;
  5. public Integer pageCount;
  6.  
  7. public Book(String author, String title, Integer pageCount) {
  8. this.author = author;
  9. this.title = title;
  10. this.pageCount = pageCount;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement