Package com.projity.pm.dependency

Examples of com.projity.pm.dependency.HasDependenciesImpl


  protected void initializeTransientTaskObjects() {
    currentSchedule.initSerialized(this,TaskSchedule.CURRENT);
    earlySchedule = new TaskSchedule(this,TaskSchedule.EARLY);
    lateSchedule = new TaskSchedule(this,TaskSchedule.LATE);
      snapshots = new SnapshottableImpl(Settings.numBaselines());
      dependencies = new HasDependenciesImpl(this);

    createSnapshot(CURRENT);
    ((TaskSnapshot)getCurrentSnapshot()).setCurrentSchedule(currentSchedule); // put the current schedule in the snapshot
    setLastSavedStart(currentSchedule.getStart());
    setLastSavedFinish(currentSchedule.getFinish());
View Full Code Here


    setLastSavedFinish(currentSchedule.getFinish());
  }
  protected void initializeTransientTaskObjectsAfterDeserialization() {
    earlySchedule = new TaskSchedule(this,TaskSchedule.EARLY);
    lateSchedule = new TaskSchedule(this,TaskSchedule.LATE);
      dependencies = new HasDependenciesImpl(this);

      currentSchedule=((TaskSnapshot)getCurrentSnapshot()).getCurrentSchedule();
    currentSchedule.initSerialized(this,TaskSchedule.CURRENT);

    setLastSavedStart(currentSchedule.getStart());
View Full Code Here

    task.notes=new String(notes);
    task.wbs=new String(wbs);
    task.wbsChildrenNodes=null;
    task.wbsParentTask=null;

    task.dependencies=new HasDependenciesImpl(task);

    task.currentSchedule.copyDatesAfterClone(currentSchedule);
    task.setDirty(true);
  }
View Full Code Here

TOP

Related Classes of com.projity.pm.dependency.HasDependenciesImpl

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.