Package com.projity.dialog

Examples of com.projity.dialog.WelcomeDialog


      return renameProjectDialog.getForm().getName();
    return null;
  }

  public void doWelcomeDialog() {
    WelcomeDialog instance = WelcomeDialog.getInstance(getFrame(),getMenuManager());
    if (instance.doModal()) {
      waitInitialization();
      if (instance.getForm().isCreateProject())
        doNewProjectDialog();
      else if (instance.getForm().isOpenProject()){
        if(Environment.getStandAlone()) openLocalProject();
        else doOpenProjectDialog();
      }else if (instance.getForm().isManageResources()) {
        loadMasterProject();
      }
    }
  }
View Full Code Here


    if (preloadProject!=null){
      loadLocalDocument(preloadProject,false);
      return;
    }

    WelcomeDialog instance = WelcomeDialog.getInstance(getFrame(),getMenuManager());
    if (instance.doModal()) {
      waitInitialization();
      if (instance.getForm().isCreateProject())
        doNewProjectDialog();
      else if (instance.getForm().isOpenProject()){
        if(Environment.getStandAlone()) openLocalProject();
        else doOpenProjectDialog();
      }else if (instance.getForm().isManageResources()) {
        loadMasterProject();
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.projity.dialog.WelcomeDialog

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.