Import the reviewquiz and review classes into eclipse

Assignment Help JAVA Programming
Reference no: EM132057204

Methods can be useful for performing the same actions repeatedly for various inputs. In this lab, we will update the ReviewQuiz class from the previous lab to include a method that outputs the data from a Review object.

In the ReviewQuiz application, we created 2 Review objects. We wrote five statements to display the data in the first Review object, and rewrote five similar statements to display the data in the second Review object. We will replace these sets of statements with a call to a static method that will perform these actions.

Download and import the ReviewQuiz and Review classes into Eclipse. In the ReviewQuiz class, make a static method named printReview that accepts a Reviewparameter. The body of this method will output the same data that each set of 5 statements outputs for each Review object. The return type for this method can be void.

After the printReview method is completed, replace each set of 5 statements in the main method with a call to printReview. Upload the updated ReviewQuiz.java source file

public class Review {
	// instance variables
	private String productName;
	private int stars;
	private String feedback;
	private int helpfulCount;
	private int notHelpfulCount;
	
	// constructor
	// Note that helpfulCount and notHelpfulCount are not parameters.
	// These variables must be initialized to zero, per the assignment.
	// All numeric instance variables are set to zero by default.
	public Review(String productName, int stars, String feedback) {
		this.productName = productName;
		this.feedback = feedback;
		// Verify that stars is between 1 and 5.
		if (stars >= 1 && stars <= 5) {
			this.stars = stars;
		}
	}

	// getter and setter methods
	public String getProductName() {
		return productName;
	}
	public void setProductName(String productName) {
		this.productName = productName;
	}
	public int getStars() {
		return stars;
	}
	public void setStars(int stars) {
		// Verify that stars is between 1 and 5.
		if (stars >= 1 && stars <= 5) {
			this.stars = stars;
		}
	}
	public String getFeedback() {
		return feedback;
	}
	public void setFeedback(String feedback) {
		this.feedback = feedback;
	}
	public int getHelpfulCount() {
		return helpfulCount;
	}
	public int getNotHelpfulCount() {
		return notHelpfulCount;
	}
	
	// markHelpfulness method
	// Increment either helpfulCount or notHelpfulCount, based on the
	// value of the helpful parameter.
	public void markHelpfulness(boolean helpful) {
		if (helpful) {
			helpfulCount++;
		} else {
			notHelpfulCount++;
		}
	}
}
public class ReviewQuiz {

	public static void main(String[] args) {
		// Make 2 calls to the constructor to create 2 Review objects.
		Review review1 = new Review("Super Mario Odyssey", 5, "Best Mario game ever!");
		Review review2 = new Review("Honey Nut Cheerios", 1, "I have never used this product.");
		
		// 2 people found the first review helpful...
		review1.markHelpfulness(true);
		review1.markHelpfulness(true);
		// ... and 1 person found it unhelpful.
		review1.markHelpfulness(false);
		
		// 4 people found the second review unhelpful.
		review2.markHelpfulness(false);
		review2.markHelpfulness(false);
		review2.markHelpfulness(false);
		review2.markHelpfulness(false);

		// Display the first review.
		System.out.printf("Product: %s%n", review1.getProductName());
		System.out.printf("Rating: %d star(s)%n", review1.getStars());
		System.out.printf("Feedback: %s%n", review1.getFeedback());
		double helpfulnessPct = review1.getHelpfulCount() * 100.0 / (review1.getHelpfulCount() + review1.getNotHelpfulCount());
		System.out.printf("%.2f%% of users found this review helpful%n", helpfulnessPct);
		
		// blank line
		System.out.println();
		
		// Display the second review.
		System.out.printf("Product: %s%n", review2.getProductName());
		System.out.printf("Rating: %d star(s)%n", review2.getStars());
		System.out.printf("Feedback: %s%n", review2.getFeedback());
		helpfulnessPct = review2.getHelpfulCount() * 100.0 / (review2.getHelpfulCount() + review2.getNotHelpfulCount());
		System.out.printf("%.2f%% of users found this review helpful", helpfulnessPct);

	}

}

Reference no: EM132057204

Questions Cloud

Containing integers sorted in ascending order : You are given a list, L , and a another list, P, containing integers sorted in ascending order.
Make a main method that will accomplish the following steps : Make a main method that will accomplish the following steps. (You may assume that the class includes all appropriate setter methods and getter methods)
Make a java class called sequence : Make a Java class called Sequence which prompts the user for a single integer value called n, and reports the sequence of integers generated by the following
Define a class named hotdogstand : You operate several hot dog stands distributed throughout town. Define a class named HotDogStand that has a member variable for the hot dog stand
Import the reviewquiz and review classes into eclipse : In the ReviewQuiz application, we created 2 Review objects. We wrote five statements to display the data in the first Review object
Prompt the user for two integers : Prompt the user for two integers, then accept the two integers from the user. Print a message that states whether or not the values are the same.
Make a method named comparevalues that determines : Make a method named compareValues that determines if two values are the same. The values are of type int. If the values are the same, return true; otherwise.
Determine the diver score : The total is then multiplied by 0.6 to determine the diver's score. Need a computer program that inputs a degree of difficulty and seven judges
Display a message stating whether the student is admitted : Show a JavaScript program that should display a message stating whether the student is admitted, and if so, whether the student is grated a scholarship.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Create menu that allows administrator simulate transmission

Create a menu that allows the administrator to simulate the transmission of information by manually typing in the login or logoff data.

  Describe the equivalence classes

Prove that these relations on the set of all functions from Z to Z are equivalence relations. Describe the equivalence classes.

  Write a generic class pair which has two type parameters

I need to write a generic class Pair which has two type parameters F and S (first and second) each representing the first and second elements of the pair. Add get and set elements so that the values of the pair can be changed.

  Write a java program to read the numbers from the disk file

Write a Java program to read the numbers from the disk file and store them in an integer array ( not an ArrayList ).

  Packer logo method

Being a super Packer fan's wife, this assignment involves the use of the Green Bay Packer logo. Any die-hard Minnesota fans are welcome to use the Viking's logo instead.

  Calculate and return the sum of the geometric series

calculate and return the sum of the geometric series

  Need the build function.use recursion

Implement remaining function. Everything else is provided. Use given material to receive points. Implement remaining function. Everything else is provided. Use given material to receive points. Implement remaining function. Everything else is provide..

  Update your website to include a simple web form

Update your website to include a simple web form as discussed in your design document. Use JavaScript to validate the form contents and display the results of that validation to the user in a popup window

  Write a program that creates two string arrays

Write a program that creates two String arrays, one to store names of 5 boys and another to store names of 5 girls

  Write a java class

Write a Java class called PQueue that extends the provided abstract QueueADT class.

  Write a short java application

You will write a short Java application that will accept five strings from the user. Each String will be a word in a sentence.

  Compare the average completion times of all jobs

Compare the average completion times of all jobs for each scheduling algorithm. Output the details of each algorithm's execution. You need to show which jobs are selected at what times as well as their starting and stopping burst values. You can choo..

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