Examples of invalidateSchedules()


Examples of com.projity.pm.task.Task.invalidateSchedules()

      if (successor.isSubproject()) { // special case for subprojects - need to reset all
        SubProj sub = (SubProj)successor;
        if (sub.isSubprojectOpen())
          sub.getSubproject().markAllTasksAsNeedingRecalculation(true);
      }
      successor.invalidateSchedules();
      successor.markTaskAsNeedingRecalculation();
     
//      The line below fixes a bug with nested parents of the sort pred->grand par sib1->sib2. Of course, it means most of the code above is redundant (except for subproject stuff)
      project.markAllTasksAsNeedingRecalculation(true);
      calculate(true,null); // Run both passes, since the CP might be modified and it's hard to tell if so
View Full Code Here

Examples of com.projity.pm.task.Task.invalidateSchedules()

   
    Iterator i = startSentinel.getSuccessorList().iterator();
    Task task;
    while (i.hasNext()) {
      task = ((Task)((Dependency)i.next()).getTask(false));
      task.invalidateSchedules();
      task.markTaskAsNeedingRecalculation();
    }

    i = finishSentinel.getPredecessorList().iterator();
    while (i.hasNext()) {
View Full Code Here

Examples of com.projity.pm.task.Task.invalidateSchedules()

    }

    i = finishSentinel.getPredecessorList().iterator();
    while (i.hasNext()) {
      task = ((Task)((Dependency)i.next()).getTask(true));
      task.invalidateSchedules();
      task.markTaskAsNeedingRecalculation();
    }
   
  }
  /**
 
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.