FileDocCategorySizeDatePackage
BookBean.javaAPI DocApache Tomcat 6.0.141330Fri Jul 20 04:20:34 BST 2007jsp2.examples

BookBean

public class BookBean extends Object

Fields Summary
private String
title
private String
author
private String
isbn
Constructors Summary
public BookBean(String title, String author, String isbn)

        this.title = title;
        this.author = author;
        this.isbn = isbn;
    
Methods Summary
public java.lang.StringgetAuthor()

        return this.author;
    
public java.lang.StringgetIsbn()

        return this.isbn;
    
public java.lang.StringgetTitle()

        return this.title;