/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package j; /** * * @author user */ class Cartel { private Forma forma; private String text; public Cartel(Forma forma, String text){ this.forma = forma; this.text = text; } public void rellenarForma(){ if(forma.cuadroFixText(this.text)){ if(forma instanceof Rectangulo){ System.out.println("Rellenado completamente."); }else{ System.out.println("Circulo rellenado."); } }else{ System.out.println("No se pudo rellenar la forma, falta espacio"); } } }