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.    
  18.     public void printAuthor() {
  19.         System.out.println(author);
  20.     }
  21.    
  22.     public void printTitle() {
  23.         System.out.println(title);
  24.     }
  25. }
');