Package pl.edu.pw.elka.mmarkiew.view

Examples of pl.edu.pw.elka.mmarkiew.view.View


  {
    this.blockingQueue = new LinkedBlockingQueue<QueueEvent>();
    this.sound = new SoundManager();
    this.timer = new Timer();
    this.model = new Model(sound);
    this.view = new View(blockingQueue);

    ExecutorService executor = Executors.newCachedThreadPool();
    executor.execute(new Thread(timer));
    executor.shutdown();
  }
View Full Code Here

TOP

Related Classes of pl.edu.pw.elka.mmarkiew.view.View

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.