// Names:
// BookList assignment

//Complete this class stub according to assignement instructions.

 /** A class that maintains information on a book. */
public class Book
{
    private String author;
    private String title;
    private int year;  // of publication

    /** Set the fields when this object is constructed. */
    public Book(String author, String title, int year)
    {  // code!

    }

    /** Return the author. */
    public String getAuthor()
    {  // code!
        
        return null; //just so the stub compiles - change
    }

    /** Return the title. */
    public String getTitle()
    {  // code!

        return null; //just so the stub compiles - change
    }
    
    /** Return the year of publication. */
    public int getYear()
    {  // code!

        return 0; //just so the stub compiles - change
    }

    /** Return a multiline String labeling all Book information. */
    public String toString()
    {  // code!

        return null; //just so the stub compiles - change
    }
}