Package pl.edu.pw.elka.mmarkiew.model

Examples of pl.edu.pw.elka.mmarkiew.model.Model


  public Controller()
  {
    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.model.Model

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.