This commit is contained in:
Leijurv
2018-10-30 15:05:17 -07:00
parent f2f806669c
commit ef6b36b2cc
19 changed files with 218 additions and 25 deletions

View File

@@ -21,6 +21,10 @@ public class SingularToSingularTaskRelationship
extends TaskRelationship<SingularTaskNode, ISingularTask>
implements ISingularChildTaskRelationship<SingularTaskNode>, ISingularParentTaskRelationship<ISingularTask> {
public SingularToSingularTaskRelationship(SingularTaskNode parent, ISingularTask child, DependencyType type) {
super(parent, child, type);
}
@Override
public double allocatedPriority() {
return parentTask().priorityAllocatedToChild(this);