com.ibm.tivoli.maximo.skd.model

Class DurationPercentCompleteMethod

  • java.lang.Object
    • com.ibm.tivoli.maximo.skd.model.DurationPercentCompleteMethod
  • All Implemented Interfaces:
    IPercentCompleteSummaryMethod


    public class DurationPercentCompleteMethod
    extends java.lang.Object
    implements IPercentCompleteSummaryMethod
    Calculates a summary percent complete by looking at the duration and % complete. eg, task A is 10% done and 4 hours, task B is 90% done and 1 hr. Avg % completes is (90+10)/2 = 50% done. Duration % complete is (sum completed / sum total) ((24 + 54) / (240 + 60)) = 26%
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      boolean updatePercentCompleteSummary(IMXActivity mxa, java.util.List children)
      Needs to populate the percent complete field in the parent based on the current percent complete values in the children.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DurationPercentCompleteMethod

        public DurationPercentCompleteMethod(java.lang.String pcCol,
                                             java.lang.String durCol)
    • Method Detail