Methods Summary |
---|
public java.lang.String | getAuthor()Gets the author value for this Book.
return author;
|
public int | getIsbn()Gets the isbn value for this Book.
return isbn;
|
public java.lang.String | getTitle()Gets the title value for this Book.
return title;
|
public void | setAuthor(java.lang.String author)Sets the author value for this Book.
this.author = author;
|
public void | setIsbn(int isbn)Sets the isbn value for this Book.
this.isbn = isbn;
|
public void | setTitle(java.lang.String title)Sets the title value for this Book.
this.title = title;
|