Fix bug add getCriticalPath() to ContextWithPlannerTask and ContextRelativeToOtherComponent
FEA: ItEr63OTS06MonteCarlo
This commit is contained in:
parent
908800a1c4
commit
076c21ecfc
2 changed files with 10 additions and 0 deletions
|
|
@ -121,4 +121,9 @@ public class ContextRelativeToOtherComponent<T> implements IContext<T> {
|
|||
return context.getGanttDiagramGraph();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<T> getCriticalPath() {
|
||||
return context.getCriticalPath();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -123,4 +123,9 @@ public class ContextWithPlannerTask<T> implements IContextWithPlannerTask<T> {
|
|||
return context.getGanttDiagramGraph();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<T> getCriticalPath() {
|
||||
return context.getCriticalPath();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue