Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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,

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.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 2012 Proceedings Part 2 Lnai 7197

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284892, 978-3642284892

More Books

Students also viewed these Databases questions

Question

Define turnover and turnover intent.

Answered: 1 week ago

Question

If ( A^2 - A + I = 0 ), then inverse of matrix ( A ) is?

Answered: 1 week ago