document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Book {
  2.  
  3.     private String author;
  4.     private String title;
  5.    
  6.     public Book(String bookAuthor, String bookTitle) {
  7.         author = bookAuthor;
  8.         title = bookTitle;
  9.     }
  10.    
  11.     public String getAuthor() {
  12.         return author;
  13.     }
  14.     public String getTitle() {
  15.         return title;
  16.     }
  17. }
');