FileDocCategorySizeDatePackage
Book.javaAPI DocExample1374Sun Sep 02 14:59:02 BST 2001chap1

Book

public class Book extends Object
A helper class used by LibraryDOMCreator and LibraryJDOMCreator, presented as Examples 1-4 and 1-5 in Chapter 1.
author
Eric M. Burke

Fields Summary
private Publisher
publisher
private String
title
private int
edition
private String
author
private String
isbn
private int
publicationMonth
private int
publicationYear
Constructors Summary
public Book(Publisher publisher, String title, int edition, String author, String isbn, int publicationMonth, int publicationYear)

        this.publisher = publisher;
        this.title = title;
        this.edition = edition;
        this.author = author;
        this.isbn = isbn;
        this.publicationMonth = publicationMonth;
        this.publicationYear = publicationYear;
    
Methods Summary
public java.lang.StringgetAuthor()

        return this.author;
    
public intgetEdition()

        return this.edition;
    
public java.lang.StringgetISBN()

        return this.isbn;
    
public intgetPublicationMonth()

        return this.publicationMonth;
    
public intgetPublicationYear()

        return this.publicationYear;
    
public PublishergetPublisher()

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

        return this.title;