Advertisement
AlfonsoPEREZ

book.java

Jan 27th, 2023
597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class Book extends Document{
  2.     private String title = "Norwegian Wood";
  3.  
  4.  
  5.     public Book(){
  6.     }
  7.  
  8.     public String getTitle(){
  9.         return title;
  10.     }
  11.  
  12.     public void setTitle(String title){
  13.         this.title = title;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement