public CellModel createCellModel( CellBinding _cellDef ) throws CompilerException
{
final boolean isInput = _cellDef instanceof InputCellBinding;
final CellModel result = createCellModel( _cellDef.getIndex(), isInput );
if (isInput) {
result.makeInput( ((InputCellBinding) _cellDef).getCallChainToCall() );
}
return result;
}