akosiraff

Download HeadPhones JAVA

Jul 30th, 2015
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/headphones-java/
  3. 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
  4. 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
  5. 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
  6. 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.
  7. For each of the objects constructed, demonstrate the use of each of the methods
  8. Download: http://solutionzip.com/downloads/headphones-java/
Add Comment
Please, Sign In to add comment