public class Main {
public static void main(String[] args){
Car jeep = new Car();
jeep.getCarColor();
jeep.setCarColor("Azul");
jeep.getCarColor();
jeep.getCarPrice();
Cabriole peugot = new Cabriole();
peugot.getCarColor();
System.out.println(peugot.getCab());
peugot.setCab("Rigido");
System.out.println(peugot.getCab());
System.out.println(peugot.activeCab());
}
}
public class Car{
private String carColor;
private double carPrice;
public Car(){
carColor = "ninguno";
carPrice = 0.00;
}
public void setCarColor(String color){
carColor = color;
}
public void setCarPrice (double precio){
carPrice = precio;
}
public void getCarColor(){
System.out.println(carColor);
}
public void getCarPrice(){
System.out.println(carPrice);
}
}
public class Cabriole extends Car{
private String cabType;
public Cabriole(){
cabType = "ninguno";
}
public String getCab(){
return cabType;
}
public void setCab(String cabType){
this.cabType = cabType;
}
public String activeCab(){
return "Cambiando la posicion del techo convertible";
}
}