Package com.projity.dialog

Examples of com.projity.dialog.BaselineDialog


  }

  boolean doBaselineDialog(boolean save) {
    finishAnyOperations();

    BaselineDialog baselineDialog = BaselineDialog.getInstance(getGraphicManager(),
        null, save,hasAtLeastOneTaskSelected());
    if (!baselineDialog.doModal())
      return false;
    Integer baselineNumber = new Integer(baselineDialog.getForm()
        .getBaselineNumber());
    boolean entireProject = baselineDialog.getForm().isEntireProject();
    List selection = entireProject ? null : getSelectedImpls(true);
    if (save)
      getProject().saveCurrentToSnapshot(baselineNumber, entireProject,
          selection,true);
    else
View Full Code Here

TOP

Related Classes of com.projity.dialog.BaselineDialog

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.