Search in sources :

Example 1 with TeamMemberTime

use of teamdash.wbs.TeamMemberTime in project processdash by dtuma.

the class TeamMemberTimeColumn method getValueAt.

/** Translate the value in this column into a TeamMemberTime object,
     * with an associated color. */
public Object getValueAt(WBSNode node) {
    NumericDataValue value = (NumericDataValue) super.getValueAt(node);
    value.isInvisible = (//
    value.value == 0 && value.errorMessage == null && isAssignedWithZero(node) == false);
    return new TeamMemberTime(value, teamMember.getColor());
}
Also used : NumericDataValue(teamdash.wbs.NumericDataValue) TeamMemberTime(teamdash.wbs.TeamMemberTime)

Aggregations

NumericDataValue (teamdash.wbs.NumericDataValue)1 TeamMemberTime (teamdash.wbs.TeamMemberTime)1