Package view

Examples of view.View


   */
  public static void main(final String[] args) {
            Loger.log("start");
   
    Model d = new Model();
    View v = new View(d);
       
      /*      try {
              Thread.sleep(2000);
            } catch (InterruptedException e) {
              // TODO Auto-generated catch block
View Full Code Here


import view.View;

public class Main {

  public static void main(String[] args) {
    new Controller(new View());
  }
View Full Code Here

    public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
      public void run() {
        try {
          Model model = new Model();
          View view = new View(model);
                    new Controller(model, view);
         
        } catch (Exception e) {
          e.printStackTrace();
          System.exit(0);
View Full Code Here

TOP

Related Classes of 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.