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

  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