HeadPhone programming
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
the default volume is MEDIUM.
A private boolean data field named plugged 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 headphones.
A private Color data field named headPhoneColor that specifies the color of the
headphones.
A private String data field named headphone model 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 change volume(value) that changes the volume of the headphone to
the value passed
Save your time - order a paper!
Get your paper written from scratch within the tight deadline. Our service is a reliable solution to all your troubles. Place an order on any task and we will take care of it. You won’t have to worry about the quality and deadlines
Order Paper NowSample Solution
The post HeadPhone programming appeared first on homework handlers.