Oracle® WebCenter Interaction Development Kit 10.3.3.0.0

ITask.AddDependentTask Method 

Adds this task as a dependent task of the given source task (makes the current task depend on the specified source task).

void AddDependentTask(
   ITask sourceTask
);

Parameters

sourceTask
The source task that the current task depends on; cannot be null.

Remarks

The current task must call Store to persist the newly-added dependency. If the source task to be added has sub-tasks, the current task cannot add that source task as a dependency, and CollaborationException will be thrown upon calling Store.

Exceptions

Exception Type Condition
InvalidOperationException The object has already been removed.

See Also

ITask Interface | Plumtree.Remote.PRC.Collaboration.Tasklist Namespace