Please i need help with this assignment. i will greatly appreciate
/in Feeds /by adminPlease i need help with this assignment. i will greatly appreciate
if you help me in doing it. its due on Sunday 02/12/2017. Thanks for your help
Homework 3Before attempting this project, be sure you have completed all of the reading assignments, hands-onlabs, 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 theheadphone volume.A private int data field named volume that specifies the volume of the headphone. Thedefault volume is MEDIUM.A private boolean data field named pluggedIn that specifies if the headphone is pluggedin. The default value is false.A private String data field named manufacturer that specifies the name of themanufacturer of the headphones.A private Color data field named headPhoneColor that specifies the color of theheadphones.A private String data field named headPhoneModel that specifies the Model of theheadphones.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 ofthe headphones.A method named changeVolume(value) that changes the volume of the headphone tothe value passed into the methodCreate a TestHeadPhone class that constructs at least 3 HeadPhone objects. For each of the objectsconstructed, demonstrate the use of each of the methods.Be sure to use your IDEto accomplish thisassignment.The google recommended Java style guide, provided as link in the week 2 content, should be used toformat 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 requirementsDeliverables include all Java files (.java) and a single word (or PDF) document. The Java files should benamed 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 beproperly labeled clearly indicated what the screen capture represents. The test cases table should beincluded 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 LEOclassroom. 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:AttributeMeetsDoes not meetHeadphone Class10 pointsThree constants named LOW,MEDIUM and HIGH with valuesof 1, 2 and 3 to denote theheadphone volumeA private int data field namedvolume that specifies thevolume of the headphone. Thedefault volume is MEDIUM.A private boolean data fieldnamed pluggedIn that specifiesif the headphone is plugged in.The default value is false.A private String data fieldnamed manufacturer thatspecifies the name of themanufacturer of theheadphones.A private Color data field namedheadPhoneColor that specifiesthe color of the headphones.A private String data fieldnamed headPhoneModel thatspecifies the Model of theheadphones.0 pointsThree constants named LOW,MEDIUM and HIGH with valuesof 1, 2 and 3 were not included.A private int data field namedvolume was not included.A private boolean data fieldnamed pluggedIn was notincluded.A private String data fieldnamed manufacturer was notincludedA private Color data field namedheadPhoneColor was notincluded.A private String data fieldnamed headPhoneModel wasnot includedgetter and setter methods forall data fields were notincluded.A no argument constructor wasnot included.
