public class CellPhone extends Electronic{ private double batteryLife; //en horas private boolean webEnabled; public CellPhone(String brand, double price, int warranty, double bL, boolean wE){ super(brand, price, warranty); batteryLife = bL; webEnabled = wE; } public void print(){ super.print(); System.out.println("Vida de baterķa: " + batteryLife + "h; Acceso a internet: " + webEnabled); } }