AuthorBook
AuthorOfTheBookClass
Size 1 kB - File type text/plainFile contents
/**
* Write a description of class BookAuthor here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class BookAuthor
{
private String first;
private String last;
public void setFirst(String s) {
first =s;
}
public void setLast(String s) {
last =s;
}
public String getFirst() {
return first;
}
public String getLast(){
return last;
}
public String print(){
return ("author is " +getFirst() + " " + getLast());
}
}
Click here to get the file