public class Book
{
// The fields.
private String author;
private String title;
/**
* Set the author and title fields when this object
* is constructed.
*/
public Book(String bookAuthor, String bookTitle)
{
author = bookAuthor;
title = bookTitle;
}
// Add the methods here ...
}
public String getbookAuthor()
{
return author;
}
Mod edit - Please

New Topic/Question
Reply




MultiQuote









|