for (OutputCellBinding outputDef : getEngineDef().getOutputs()) {
CellModel model = getOrCreateCellModel( outputDef.getIndex() );
model.makeOutput( outputDef.getCallToImplement() );
}
for (Entry<CellIndex, InputCellBinding> inputEntry : getEngineDef().getInputs().entrySet()) {
InputCellBinding inputDef = inputEntry.getValue();
CellModel model = getCellModel( inputDef.getIndex() );
if (null != model) {
model.makeInput( mapDynamicParams( inputDef.getCallChainToCall() ) );
}
}
}