Search in sources :

Example 1 with ReadOnlyValue

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

the class TaskDependencyColumn method getValueAt.

public Object getValueAt(WBSNode node) {
    TaskDependencyList list = (TaskDependencyList) node.getAttribute(TASK_LIST_ATTR);
    Object result = list;
    if (node.getIndentLevel() == 0 || node.isReadOnly())
        result = new ReadOnlyValue(result);
    return result;
}
Also used : ReadOnlyValue(teamdash.wbs.ReadOnlyValue) TaskDependencyList(teamdash.wbs.TaskDependencyList)

Aggregations

ReadOnlyValue (teamdash.wbs.ReadOnlyValue)1 TaskDependencyList (teamdash.wbs.TaskDependencyList)1