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;
}
Aggregations