Examples of DrinkMaker


Examples of Facade.DrinkMaker

   
    System.out.println("FACADE DEMO");
    System.out.println();
   
    //Instantiate the DrinkMaker facade
    DrinkMaker dm = new DrinkMaker();
   
    //The DrinkMaker facade exposes the drink methods - but does not reveal the underlying methods
    System.out.println("The facade allows access to the drinks, but does not reveal underlying methods etc.");
    dm.getBeer();
    dm.getWine();
    dm.getCoffee();
    dm.getTea();

    System.out.println();
   
   
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.