home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-tomcat-addon-1.4.9-installer.exe / BookBean.class (.txt) < prev    next >
Encoding:
Java Class File  |  2004-05-17  |  736 b   |  26 lines

  1. package jsp2.examples;
  2.  
  3. public class BookBean {
  4.    private String title;
  5.    private String author;
  6.    private String isbn;
  7.  
  8.    public BookBean(String title, String author, String isbn) {
  9.       this.title = title;
  10.       this.author = author;
  11.       this.isbn = isbn;
  12.    }
  13.  
  14.    public String getTitle() {
  15.       return this.title;
  16.    }
  17.  
  18.    public String getAuthor() {
  19.       return this.author;
  20.    }
  21.  
  22.    public String getIsbn() {
  23.       return this.isbn;
  24.    }
  25. }
  26.