Provide a method definition for the setred method

Assignment Help JAVA Programming
Reference no: EM132430574

In many languages (including Java), you can form a color by specifying certain amounts of red, green, and blue, with each color's amount ranging from 0% to 100%.

In the following Rgb and RgbDriver class skeletons, replace the <insert...> lines with appropriate code such that the program operates properly. More specifically:

  1. In the Rgb class, provide a method definition for the setRed method such that setRed can be called as part of a method-call chain.
  2. In the RgbDriver class, provide a single statement that chains calls to the setRed, setGreen, setBlue, and display For your method-call arguments, pass 100 to setRed, 60 to setGreen, and 100 to setBlue. With those argument values, your method-call-chaining statement should print this:
rgb(100%, 60%, 100%)

 

public class Rgb
{
 private int red;
 private int green;
 private int blue;
  <insert setRed method definition here>
 public Rgb setGreen(int green)
 {
   this.green = green;
   return this;
 } // end setGreen
 
public Rgb setBlue(int blue)
 {
   this.blue = blue;
   return this;
 } // end setBlue
 
public void display()
 {
   System.out.printf("rgb(%d%%, %d%%, %d%%)n",
     this.red, this.green, this.blue);
 } // end display
} // end Rgb class

public class RgbDriver
{
 public static void main(String[] args)
 {
   Rgb rgb = new Rgb();
    <insert chained method calls here><br/  }
} // end RgbDriver class?font>

Reference no: EM132430574

Questions Cloud

Why does cindy demand that clark fire jende : Based on how they will be able to live in Limbe, do you think that the Jongas achieved the American Dream? Why or why not?Why does Cindy demand that Clark fire
Provide a method heading for a public method : Provide a method heading for a public method named setCost that receives a double parameter named cost and returns nothing. You must use good style
Draw the resulting bst : The student shall be able to explain what a BST is and to explain the characteristics of BST's. A BST is created (it is initially empty) where the key associate
Prepare the cash payments budget for the second quarter : Operating income for the first quarter of the coming year is projected to be $320,000. Prepare the cash payments budget for the second quarter
Provide a method definition for the setred method : In the Rgb class, provide a method definition for the setRed method such that setRed can be called as part of a method-call chain.
How do the four components of culture : What does your chosen theorist say about the role of culture in shaping human behavior?How do the four components of culture?
Program that tracks goldfish stored in fish tanks : Implement a program that tracks goldfish stored in fish tanks. The FishTank class includes:
Design an application for the sublime sandwich shop : Design an application for the Sublime Sandwich Shop. The user makes sandwich order choices from list boxes, and the application displays the price.
Form field validation and error messages : You have created a basic form and added interactivity to images using JavaScript. Now it is time to validate information entered into your form fields

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