Package com.projity.pm.assignment.contour

Examples of com.projity.pm.assignment.contour.PersonalContour


    return (long) resource.getMaximumUnits() * cal.compare(getFinish(),getStart(),false);
  }
 
 
  void shift(long start, long end, long shiftDuration) {
    PersonalContour newContour =PersonalContour.makePersonal(workContour,getDuration());
    newContour = newContour.shift(start,end,shiftDuration);
    workContour =newContour;
    if (workContour.isPersonal())
      duration = workContour.calcTotalBucketDuration(duration);
    checkForNegativeDuration();
  }
View Full Code Here


    if (!getWorkContour().isPersonal())
      makeContourPersonal();

    value /= (endDuration - startDuration);
    PersonalContour newContour = ((PersonalContour)getWorkContour()).setInterval(startDuration,endDuration,value);

    extractDelayFromContour(newContour); // move delay back into delay field from contour
    newDetail().setWorkContour(newContour);
    newDetail().recalculateDuration();
    getTask().updateCachedDuration();
View Full Code Here

TOP

Related Classes of com.projity.pm.assignment.contour.PersonalContour

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.