Book Class
BookClass
Size 1 kB - File type text/plainFile contents
/** * Write a description of class Book here. * * @author (your name) * @version (a version number or a date) */ public class Book { private BookAuthor author; private String title; public void setTitle(String s) { title =s; } public String getTitle(){ return title; } public BookAuthor getAuthor(){ return author; } public void setAuthor(BookAuthor a) { author =a; } public String print(){ return ("Title of the book is " + title + " and the name of the " +author.print()); } }