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

  Mean and standard deviation using using eclipse

Java programming to calculate Mean and standard deviation using Using Eclipse.

  Write jvm program which accepts rpn expression

Write down the IJVM program which accepts RPN expression, with each operand and operator entered line by line. As each number (operand) is entered, push it on stack.

  Java application that asks a user to enter two integers

Write a Java application that asks a user to enter two integers (A and B) and then display the results of A/B. Catch any division by zero errors and prompt the user to reenter the value of B. Be sure your code compiles and runs as expected. Name your..

  Design an abstract data type in java

Design an abstract data type in Java that represents a musical pitch

  Use inheritance to read, store, and print questions for test

use inheritance to read, store, and print questions for a test. First, write an abstract class

  Java program to store temperatures in two-dimensional array

Write the Java program which uses two-dimensional array to store highest and lowest temperatures for each month of the year. Program must output average high,average low,

  Write a java program in a netbeans project

Write a Java program in a NetBeans project

  Reverse the array, and find the largest element

find the max block of an array by splitting it into three parts: left, middle, right. And then reverse the array, and find the largest element.

  Create a gui version of the game mini sudoku.

Each row has the numbers 1 to 6,Each column has the numbers 1 to 6,Each group of 2 rows by 3 columns also has the numbers 1 to 6.

  Write a while loop that lets the user enter a number

1) Write a while loop that lets the user enter a number. The number should then be multiplied by 10, and stored in a variable called product. The loop should then iterate as long as product contains a value less than 100.

  Reads in up to 1000 non-negative integers

Write a program that reads in up to 1000 non-negative integers and displays distinct numbers (i.e., if a number appears multiple times, it is displayed only once). (Hint: Read each number and store it in an array if it is new. If the number is alread..

  Create javascript program to find gross pay for employees

Create JavaScript program which will find out the gross pay for each of three employees. Company pays "straight time" for first 40 hours worked by each employee and pays "time and a half".

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