Package Factory

Examples of Factory.RealAleType


   
    System.out.println("FACTORY DEMO");
    System.out.println();
   
    //Test the Octopus factory
    RealAleType Bitter = RealAleType.BITTER;
    RealAleType Golden = RealAleType.GOLDEN;
    RealAleType Mild = RealAleType.MILD;
    RealAleType Stout = RealAleType.STOUT;
    RealAleType Barley_Wine = RealAleType.BARLEY_WINE;

    try {
      System.out.println("Brewed a Golden Ale:");
      System.out.println(RealAleFactory.makeRealAle(Golden));
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of Factory.RealAleType

Copyright © 2018 www.massapicom. 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.