LoopCondition myLoopCondition;
LoopStep myLoopStep;
int myCurrentControlParameterValue;
public LoopContext(int nLoopControlParameterFinalValue) {
final LoopComponentFactory myLoopComponentFactory = new LoopComponentFactory();
myLoopInitializer = myLoopComponentFactory.createLoopInitializer();
myLoopFinalizer = myLoopComponentFactory.createLoopFinalizer(nLoopControlParameterFinalValue);
myLoopCondition = myLoopComponentFactory.createLoopCondition();
myLoopStep = myLoopComponentFactory.createLoopStep();
}