In Java create this:
Create a Phone class with
double price
String color
int screenResolution (maxScreenResolution = 300ppi (pixels per inch)
setPrice
setColor
setScreenResolution – setter should prevent resolution above 300 ppi
getPrice
getColor
getScreenResolution
Create an ExpensivePhone class that extends the phone class with
int screenResolution (maxScreenResolution = 450ppi (pixels per inch)
int numLenses (Multiple lenses = up to three)
setScreenResolution – setter should prevent resolution above 450 ppi
set numLenses – setter should prevent more than 3 lenses
get screenResolution
get numLenses