Question

Homework 3 Before attempting this project, be sure you have completed all of the reading assignments,...

Homework 3 Before attempting this project, be sure you have completed all of the reading assignments, hands-on labs, discussions, and assignments to date. Create a Java class named HeadPhone to represent a headphone set. The class contains:  Three constants named LOW, MEDIUM and HIGH with values of 1, 2 and 3 to denote the headphone volume.  A private int data field named volume that specifies the volume of the headphone. The default volume is MEDIUM.  A private boolean data field named pluggedIn that specifies if the headphone is plugged in. The default value is false.  A private String data field named manufacturer that specifies the name of the manufacturer of the headphones.  A private Color data field named headPhoneColor that specifies the color of the headphones.  A private String data field named headPhoneModel that specifies the Model of the headphones.  getter and setter methods for all data fields.  A no argument constructor that creates a default headphone.  A method named toString() that returns a string describing the current field values of the headphones.  A method named changeVolume(value) that changes the volume of the headphone to the value passed into the method Create a TestHeadPhone class that constructs at least 3 HeadPhone objects. For each of the objects constructed, demonstrate the use of each of the methods. Be sure to use your IDE to accomplish this assignment. The google recommended Java style guide, provided as link in the week 2 content, should be used to format and document your code. Specifically, the following style guide attributes should be addressed:  Header comments include filename, author, date and brief purpose of the program.  In-line comments used to describe major functionality of the code.  Meaningful variable names and prompts applied.  Class names are written in UpperCamelCase.  Variable names are written in lowerCamelCase.  Constant names are in written in All Capitals.  Braces use K&R style. Submission requirements Deliverables include all Java files (.java) and a single word (or PDF) document. The Java files should be named appropriately for your applications. The word (or PDF) document should include screen captures showing the successful compiling and running of each of the test cases. Each screen capture should be properly labeled clearly indicated what the screen capture represents. The test cases table should be included in your word or PDF document and properly labeled as well. Submit your files to the Homework 3 assignment area no later than the due date listed in your LEO classroom. You should include your name and HW3 in your word (or PDF) file submitted (e.g. firstnamelastnamehw3.docx or firstnamelastnamehw3.pdf) Grading Rubric: The following grading rubric will be used to determine your grade: Attribute Meets Does not meet Headphone Class 10 points Three constants named LOW, MEDIUM and HIGH with values of 1, 2 and 3 to denote the headphone volume A private int data field named volume that specifies the volume of the headphone. The default volume is MEDIUM. A private boolean data field named pluggedIn that specifies if the headphone is plugged in. The default value is false. A private String data field named manufacturer that specifies the name of the manufacturer of the headphones. A private Color data field named headPhoneColor that specifies the color of the headphones. A private String data field named headPhoneModel that specifies the Model of the headphones. 0 points Three constants named LOW, MEDIUM and HIGH with values of 1, 2 and 3 were not included. A private int data field named volume was not included. A private boolean data field named pluggedIn was not included. A private String data field named manufacturer was not included A private Color data field named headPhoneColor was not included. A private String data field named headPhoneModel was not included getter and setter methods for all data fields were not included. A no argument constructor was not included. getter and setter methods for all data fields. A no argument constructor that creates a default headphone. A method named toString() that returns a string describing the current field values of the headphones. A method named changeVolume(value) that changes the volume of the headphone to the value passed into the method An IDE (Netbeans or Eclipse) was used for this assignment. A method named toString()was not included. A method named changeVolume(value) was not included. An IDE (Netbeans or Eclipse) was not used for this assignment. Test Headphone Class 5 points TestHeadPhone class was used to construct at least 3 HeadPhone objects. For each of the objects constructed, the use of each of the methods was demonstrated An IDE (Netbeans or Eclipse) was used for this assignment. 0 points TestHeadPhone class was not used to construct at least 3 HeadPhone objects. For each of the objects constructed, the use of each of the methods was not demonstrated An IDE (Netbeans or Eclipse) was not used for this assignment. Test Cases 5 points A minimum of 3 test cases was used in the form of table with columns indicating the input values, expected output, actual output and if the test case passed or failed. The table should contains 4 columns with appropriate labels and a row for each test case. 0 points No test cases were provided. Test cases were included in the supporting word or PDF documentation. Documentation and Style guide 5 points Screen captures were provided and labeled for compiling your code, and running each of your 5 test cases. Header comments include filename, author, date and brief purpose of the program. In-line comments used to describe major functionality of the code. Meaningful variable names and prompts applied. Class names are written in UpperCamelCase. Variable names are written in lowerCamelCase. Constant names are in written in All Capitals. Braces use K&R style. 0 points No documentation included Java style guide was not used to prepare the Java code.

Homework Answers

Answer #1

CODE:

HeadPhone.java

package temp;

// HeadPhone class
public class HeadPhone {
  
   final int LOW = 1;       // HeadPhone volume LOW
   final int MEDIUM = 2;    // HeadPhone volume MEDIUM
   final int HIGH = 3;       // HeadPhone volume HIGH
  
   private int VOLUME;
   private boolean pluggedIn;
   private String manufacturer;
   private String headPhoneColor;
   private String headPhoneModel;
  
   // Constructor that creates default HEADPHONE
   public HeadPhone() {
       VOLUME = LOW;
       this.pluggedIn = false;      
   }
  
   // Getters and Setters
   public int getVOLUME() {
       return VOLUME;
   }
  
   public void setVOLUME(int volum) {
       VOLUME = volum;
   }
  
   public boolean isPluggedIn() {
       return pluggedIn;
   }
  
   public void setPluggedIn(boolean pluggedIn) {
       this.pluggedIn = pluggedIn;
   }
  
   public String getManufacturer() {
       return manufacturer;
   }
  
   public void setManufacturer(String manufacturer) {
       this.manufacturer = manufacturer;
   }
  
   public String getHeadPhoneColor() {
       return headPhoneColor;
   }
  
   public void setHeadPhoneColor(String headPhoneColor) {
       this.headPhoneColor = headPhoneColor;
   }
  
   public String getHeadPhoneModel() {
       return headPhoneModel;
   }
  
   public void setHeadPhoneModel(String headPhoneModel) {
       this.headPhoneModel = headPhoneModel;
   }
      
   // to display current state of the HEADPHONE
   @Override
   public String toString(){
       return "\nHeadphone Model: " + getHeadPhoneModel() + "\nHeadphone color: " + getHeadPhoneColor()
              + "\nManufacturer: " + getManufacturer() + "\nPlugged In: " + isPluggedIn();
   }

   // changeVolume to set the new volume
   public void changeVolume(int volume){
       this.VOLUME = volume;
   }
}

TestHeadPhone.java

package temp;

public class TestHeadPhone {
  
   public static void main(String[] args){
       HeadPhone hp1 = new HeadPhone();
       HeadPhone hp2 = new HeadPhone();
       HeadPhone hp3 = new HeadPhone();
      
      
       // Please demonstrate each of the methods for all the 3 objects created
       // as given in the assignment.
       // Sample thing is given below.
      
       hp1.setHeadPhoneColor("blue");
       hp1.setHeadPhoneModel("nokia 123");
       hp1.setManufacturer("Nokia");
       hp1.setPluggedIn(true);
       hp1.setVOLUME(5);
       System.out.println(hp1.toString());
   }
  
  
}

OUTPUT:


Headphone Model: nokia 123
Headphone color: blue
Manufacturer: Nokia
Plugged In: true

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
This laboratory assignment involves implementing a data structure called a map. A map associates objects called...
This laboratory assignment involves implementing a data structure called a map. A map associates objects called keys with other objects called values. It is implemented as a Java class that uses arrays internally. 1. Theory. A map is a set of key-value pairs. Each key is said to be associated with its corresponding value, so there is at most one pair in the set with a given key. You can perform the following operations on maps. You can test if...
I've posted this question like 3 times now and I can't seem to find someone that...
I've posted this question like 3 times now and I can't seem to find someone that is able to answer it. Please can someone help me code this? Thank you!! Programming Project #4 – Programmer Jones and the Temple of Gloom Part 1 The stack data structure plays a pivotal role in the design of computer games. Any algorithm that requires the user to retrace their steps is a perfect candidate for using a stack. In this simple game you...
What tools could AA leaders have used to increase their awareness of internal and external issues?...
What tools could AA leaders have used to increase their awareness of internal and external issues? ???ALASKA AIRLINES: NAVIGATING CHANGE In the autumn of 2007, Alaska Airlines executives adjourned at the end of a long and stressful day in the midst of a multi-day strategic planning session. Most headed outside to relax, unwind and enjoy a bonfire on the shore of Semiahmoo Spit, outside the meeting venue in Blaine, a seaport town in northwest Washington state. Meanwhile, several members of...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT