Package gld.edit

Examples of gld.edit.EditModel


    }
  }
 
  /** Opens the editor */
  public void openEditor() {
    if (editController == null) editController = new EditController(new EditModel(), false);
    editController.show();
    editController.requestFocus();
  }
View Full Code Here


  }
 
  /** Method which gives the right controller for starting */
  public Controller getController ()
  {  switch (type)
    {   case EDITOR :  return new EditController (new EditModel(),splashScreen);
      case SIMULATOR:return new SimController (new SimModel(),splashScreen);
    }
    System.out.println
      ("GLDStarter was called with unknown controller type "+type+
       ". Cannot get new instance of Controller.");
View Full Code Here

TOP

Related Classes of gld.edit.EditModel

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.