Methods Summary |
---|
public java.lang.String | getAuthor()Gets the author of the book
return author;
|
public java.lang.String | getEditor()Gets the name of the editor the book
return editor;
|
public double | getPrice()Gets the price of the book in USD
return price;
|
public java.lang.String | getTitle()Gets the title of the book
return title;
|
public void | setAuthor(java.lang.String author)Sets the author of the book
this.author = author;
|
public void | setEditor(java.lang.String editor)Sets the name of the editor the book
this.editor = editor;
|
public void | setPrice(double price)Sets the price of the book in USD
this.price = price;
|
public void | setTitle(java.lang.String title)Sets the title of the book
this.title = title;
|