
import impl.Chantilly;
import impl.Chocolat;
import impl.Crepe;
import model.Dessert;

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Andréa
 */
public class Application {

    public static void main(String[]args){
        Dessert d = new Crepe();

        System.out.println("Dessert : " + d);

        d = new Chantilly(d);

        System.out.println("Dessert : " + d);

        d = new Chocolat(d);

        System.out.println("Dessert : " + d);
    }
}
