1 create a java class named headphones to represent a


1. Create a Java class named HeadPhones 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 if 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.
  • 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 TestHeadPhones class that constructs at least 3 HeadPhones 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.

2. Create your own Java class that represents your favorite musical instrument. Your musical instrument class should have at least 3 constants, 4 private data fields, getters and setters for each private data field, a toString() method, and two additional methods of your choice. Create a test class that constructs at least 3 of your musical instrument 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. You can pick any instrument you want. When designing your class, think about what would make sense to describe and use the instrument. For example, if you selected a trumpet, you might need to provide the number of valves, the manufacturer, if the instrument is using a mute, and the volume or even notes the trumpet is playing. Make this your own creation and have fun with it.

Solution Preview :

Prepared by a verified Expert
JAVA Programming: 1 create a java class named headphones to represent a
Reference No:- TGS01237759

Now Priced at $75 (50% Discount)

Recommended (97%)

Rated (4.9/5)

A

Anonymous user

2/6/2016 12:22:37 AM

Do the assignment of Java according to the following guidelines: Form a Java class which represents your favorite musical instrument. The musical instrument class must have at least 3 constants, 4 private data fields, getters and setters for each and every private data field, a toString() method, and two additional methods of your preference. Make a test class which constructs at least 3 of your musical instrument objects. For each of objects constructed illustrate the use of each of methods. Remember to use IDE to complete this assignment. Please provide all the programming codes all along with respective snapshots which helps us to better understand the project.