FileDocCategorySizeDatePackage
Book.javaAPI DocApache Axis 1.41446Sat Apr 22 18:57:28 BST 2006test.holders

Book

public class Book extends Object implements Serializable

Fields Summary
private String
author
private String
title
private int
isbn
Constructors Summary
public Book()

    
public Book(String author, int isbn, String title)

        this.author = author;
        this.title = title;
        this.isbn = isbn;
    
Methods Summary
public java.lang.StringgetAuthor()
Gets the author value for this Book.

return
author

        return author;
    
public intgetIsbn()
Gets the isbn value for this Book.

return
isbn

        return isbn;
    
public java.lang.StringgetTitle()
Gets the title value for this Book.

return
title

        return title;
    
public voidsetAuthor(java.lang.String author)
Sets the author value for this Book.

param
author

        this.author = author;
    
public voidsetIsbn(int isbn)
Sets the isbn value for this Book.

param
isbn

        this.isbn = isbn;
    
public voidsetTitle(java.lang.String title)
Sets the title value for this Book.

param
title

        this.title = title;