Package com.hotmoka.examples.patterns.composite

Examples of com.hotmoka.examples.patterns.composite.Draw


import com.hotmoka.examples.patterns.composite.Star;

public class Main {

  public static void main(String[] args) {
    Draw h = new H(), e = new E(), l = new L(), o = new O(), star = new Star();
    Draw hello = new HorizontalDraw(star, h, e, l, l, o, star);
    Draw frame = new FrameDraw(hello);
    System.out.println(frame);
    System.out.println(new HorizontalDraw(hello, frame));
  }
View Full Code Here

TOP

Related Classes of com.hotmoka.examples.patterns.composite.Draw

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.