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

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

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