[Bug #975] Renamed getStretches() to getAllStretches()
FEA: ItEr74S04BugFixing
This commit is contained in:
parent
0110098796
commit
3cc1718288
4 changed files with 4 additions and 4 deletions
|
|
@ -161,7 +161,7 @@ public abstract class GraphicForStreches implements IGraphicGenerator {
|
|||
|
||||
@Override
|
||||
public boolean areChartsEnabled(IStretchesFunctionModel model) {
|
||||
return canComputeChartFrom(model.getStretches(), model
|
||||
return canComputeChartFrom(model.getAllStretches(), model
|
||||
.getTaskStartDate());
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ public interface IStretchesFunctionModel {
|
|||
* Intermediate conversation steps
|
||||
*/
|
||||
|
||||
List<Stretch> getStretches();
|
||||
List<Stretch> getAllStretches();
|
||||
|
||||
List<Stretch> getStretchesDefinedByUser();
|
||||
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ public class StretchesFunctionController extends GenericForwardComposer {
|
|||
}
|
||||
|
||||
public List<Stretch> getStretches() {
|
||||
return stretchesFunctionModel.getStretches();
|
||||
return stretchesFunctionModel.getAllStretches();
|
||||
}
|
||||
|
||||
public StretchesRenderer getStretchesRenderer() {
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ public class StretchesFunctionModel implements IStretchesFunctionModel {
|
|||
}
|
||||
|
||||
@Override
|
||||
public List<Stretch> getStretches() {
|
||||
public List<Stretch> getAllStretches() {
|
||||
if (stretchesFunction == null) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue