Examples of fireMultipleTransaction()


Examples of com.projity.pm.task.Project.fireMultipleTransaction()

//      if (!task.isAssignable())
//        continue;
      if (transactionId == 0) {
        transactionProject = task.getProject();
        transactionProject.beginUndoUpdate();
        transactionId = transactionProject.fireMultipleTransaction(0,true);
       
        //backup before any assignment operation
        transactionProject.getUndoController().getEditSupport().postEdit(new ScheduleBackupEdit(tasks,this));
      }
      // if task currently has no assignments, then we should not change duration if adding several at once
View Full Code Here

Examples of com.projity.pm.task.Project.fireMultipleTransaction()

        task.setSchedulingType(oldSchedulingType);
        task.setEffortDriven(oldEffortDriven);
      }
    }
    if (transactionId != 0) {
      transactionProject.fireMultipleTransaction(transactionId,false);
      transactionProject.endUndoUpdate();
    }

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.