Modify the book class to accommodate multiple authors

Assignment Help JAVA Programming
Reference no: EM13165506

modify the Book class to accommodate multiple authors using one of the components from the Java Collection Framework. Can you help? Thanks! (Please only answer in Java codes) I just noticed that I need to revise the boolean equals. and validate part since they are not right? I'm so lost!!!

 

Here is the codes that I already have for class Book:

 

package book;

 

public class Book {

private String author;

private String title;

private String isbn;

 

public Book() {

super();

isbn="";

author="";

title = "";

}

 

public Book(String author, String title, String isbn) {

this.author = author;

this.title = title;

this.isbn = isbn;

}

 

public String getAuthor(){

return this.author;

}

 

public void setAuthor(String author) {

this.author = author;

}

 

public String getTitle(){

return this.title;

}

 

public void setTitle(String title) {

this.title = title;

}

 

public String getIsbn() {

return this.isbn;

}

 

public void setIsbn(String isbn) {

this.isbn = isbn;

}

 

public boolean equals(Object obj) {

Book book = (Book) obj;

return this.getAuthor().equals(getAuthor()) && (this.getIsbn().equals(getIsbn())) && (this.getTitle().equals(getTitle()));

}

 

public boolean validate(){

return (this.getIsbn().trim()!= null) && (this.getAuthor().trim()!= null) && (this.getTitle().trim()!=null);

 

}

}

 

 

Reference no: EM13165506

Questions Cloud

Considered to be an improved version : Part (c) is considered to be an improved version of Part (b). You may use an array (2-dimessional) to store some values that has been computed during the run so that when making recursive calls the program does not compute certain values over and ..
What mass of this substance must evaporate : What mass of this substance must evaporate in order to freeze 112 of water initially at 18? (The heat of fusion of water is 334 the specific heat of water is 4.18 .
Flaw in your design and outline : After completing Part a, discuss the flaw in your design and outline some code that will cause it to break (your code should compile fine and will also execute without an error but will violate how a rectangle or square should behave).
Calculate the mole percent composition of the mixture : Calculate the weight percent composition of the mixture, using the same assumptions as in part A.
Modify the book class to accommodate multiple authors : modify the Book class to accommodate multiple authors using one of the components from the Java Collection Framework.
What is the empirical formula of the hydrocarbon : 4.236-g sample of a hydrocarbon (CxHy) is combusted in O2 completely to give 3.810 g of H2O and 13.96 g of CO2. What is the empirical formula of the hydrocarbon?
Write a test program that prompts the user : public static int binaryToDecimal(String binaryString)Write a test program that prompts the user to enter a binary string and displays its decimal equivalent.
What mass of iron would be required to cover : What mass of iron would be required to cover a football playing surface of 120 yds × 60 yds to a depth of 1.0 mm?
Functions to make a main program : write the required functions to make a main program that is already written

Reviews

Write a Review

JAVA Programming Questions & Answers

  Describe how an eavesdropped can gain access

Describe how an eavesdropped can gain access to the remote server with a relatively modest number of guesses ( Hint:  The eavesdropped starts guessing after the original user has typed all but one character of the password.

  Write an algorithm for fining the middle node

Write an algorithm for fining the middle node of a doubly linked list given both the head and the tail of the list.And Write a  recursive  java function that counts the number of nodes in a circularly linked list.

  Loops and files

Convert an algorithm using control structures into Java and write a while loop

  Multiple choice java programming questions

Determine which of the following may be a violation of information hiding if inserted for the comment above?

  Create a book class for the library application project

Create a Book class for the Library application project. In addition to properties of author and isbn, with setters/getters, the Book should override Object's base method "boolean equals(Object)" and have a "boolean validate()" method.

  Application named arithmeticmethods

Create an application named ArithmeticMethods whose main() method holds two integer variables. Assign values to the variables. In turn, pass each value to methods named displayNumberPlus10()

  A java program that will prompt the user to input a file

Write a Java program that will prompt the user to input a file (document) in order to count the frequency of each word. This program will display the frequency of each word sorted alphabetically or by frequency (depending on the preference of the use..

  Design a boolean function named isprime,

A prime number is a number that is only evenly divisible by itself and 1. For example, the number 5 is prime because it can only be evenly divided by 1 and 5. The number 6, however, is not prime because it can be divided evenly by 1, 2, 3, and 6. Des..

  Write a program called word guessing game.

Write a program called Word Guessing Game. Open the file FourLetterWords.txt and write the contents into an array of Strings (the file has 87 words in it).

  Java program editing

Prompt the user for the student's score and put that value into an object

  How to count number of objects (instances) created

How to count number of objects (instances) Created, use java code and please be descriptive

  Create a calculator function

This is the code for my trip planner,you need to figure out how to create a calculator function to enable users to calculate their own costs if they choose

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd