FileDocCategorySizeDatePackage
BookEntry.javaAPI DocExample678Thu Oct 24 20:14:22 BST 2002None

BookEntry

public class BookEntry extends Object

Fields Summary
private final String
title
private final String
imagePath
private ImageIcon
image
Constructors Summary
public BookEntry(String title, String imagePath)

        this.title = title;
        this.imagePath = imagePath;
    
Methods Summary
public javax.swing.ImageIcongetImage()

        if (image == null) {
            image = new ImageIcon(imagePath);
        }
        return image;
    
public java.lang.StringgetTitle()

 return title; 
public java.lang.StringtoString()

 return title;