In MXML you can easily set the itemRenderer to the string of your class, including dot syntax classpath, but in ActionScript it is different.
_list = new List();
_list.itemRenderer = new ClassFactory(IndexRenderer);
addChild(_list);
As you see the ClassFactory class is used because itemRenderer expects an IFactory implementation.
Just a quick tip.