Class Book
- java.lang.Object
-
- org.apache.wicket.examples.compref.Book
-
- All Implemented Interfaces:
Serializable,IClusterable
public final class Book extends Object implements IClusterable
A book.- Author:
- Eelco Hillenius
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Book()Construct.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthor()Gets the author.StringgetIsbn()Gets the isbn.StringgetTitle()Gets the title.voidsetAuthor(String author)Sets the author.voidsetIsbn(String isbn)Sets the isbn.voidsetTitle(String title)Sets the title.
-
-
-
Method Detail
-
getAuthor
public final String getAuthor()
Gets the author.- Returns:
- author
-
setAuthor
public final void setAuthor(String author)
Sets the author.- Parameters:
author- author
-
getIsbn
public final String getIsbn()
Gets the isbn.- Returns:
- isbn
-
setIsbn
public final void setIsbn(String isbn)
Sets the isbn.- Parameters:
isbn- isbn
-
getTitle
public final String getTitle()
Gets the title.- Returns:
- title
-
setTitle
public final void setTitle(String title)
Sets the title.- Parameters:
title- title
-
-