FileDocCategorySizeDatePackage
Publisher.javaAPI DocExample1072Sun Sep 02 14:59:00 BST 2001chap1

Publisher

public class Publisher 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 String
id
private String
name
private String
street
private String
city
private String
state
private String
postal
Constructors Summary
public Publisher(String id, String name, String street, String city, String state, String postal)

        this.id = id;
        this.name = name;
        this.street = street;
        this.city = city;
        this.state = state;
        this.postal = postal;
    
Methods Summary
public java.lang.StringgetCity()

        return this.city;
    
public java.lang.StringgetId()

        return this.id;
    
public java.lang.StringgetName()

        return this.name;
    
public java.lang.StringgetPostal()

        return this.postal;
    
public java.lang.StringgetState()

        return this.state;
    
public java.lang.StringgetStreet()

        return this.street;