| java.lang.Object com.projity.pm.assignment.contour.AbstractContour
All known Subclasses: com.projity.pm.assignment.contour.PersonalContour, com.projity.pm.assignment.contour.StandardContour,
AbstractContour | abstract public class AbstractContour implements Cloneable(Code) | | Abstract base class for work and cost contours
|
maxUnits | protected double maxUnits(Code) | | |
bucketsBetweenDurations | public LinkedList bucketsBetweenDurations(long start, long end, long assignmentDuration)(Code) | | Returns a linked list of buckets that fall between two duration points. Used when copying planned to actuals.
Parameters: start - Parameters: end - Parameters: assignmentDuration - |
calcMaxUnits | protected double calcMaxUnits()(Code) | | |
calcTotalBucketDuration | public long calcTotalBucketDuration(long assignmentDuration)(Code) | | |
calcTotalWork | abstract public long calcTotalWork(long assignmentDuration)(Code) | | |
calcWorkingBucketDuration | public long calcWorkingBucketDuration(long assignmentDuration)(Code) | | |
extend | abstract public AbstractContour extend(long end, long extendDuration)(Code) | | Parameters: end - Parameters: extendDuration - |
extendBefore | abstract public AbstractContour extendBefore(long startOffset, long extendDuration)(Code) | | Parameters: startOffset - Parameters: extendDuration - |
extractDelay | public long extractDelay()(Code) | | Remove any starting empty bucket from the contour and return the duration of that bucket
|
getLastBucketUnits | public double getLastBucketUnits()(Code) | | |
getMaxUnits | public double getMaxUnits()(Code) | | Returns the maxUnits. |
getRangeThatIntervalCanBeMoved | abstract public MutableInterval getRangeThatIntervalCanBeMoved(long start, long end)(Code) | | |
getType | abstract public int getType()(Code) | | |
isPersonal | abstract public boolean isPersonal()(Code) | | |
numBuckets | public int numBuckets()(Code) | | |
toArrayList | public ArrayList toArrayList()(Code) | | Returns an array list containing elements of bucket array
|
toString | public String toString(long assignmentDuration)(Code) | | |
|
|