Advertisement
irishstorm

book.java

Jan 15th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. public class Book
  3. {
  4. // Variables
  5. private String _title;
  6.  
  7. // Constructor
  8. public Book(String title)
  9. {
  10. _title = title;
  11. }
  12.  
  13. // Getters and Setters.
  14. public String getTitle()
  15. {
  16. return _title;
  17. }
  18.  
  19. public void setTitle(String title)
  20. {
  21. _title = title;
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement