Search code examples
apache-flexfully-qualified-naming

Flex - new ClassFactory() vs Fully Qualified Name


When assigning the itemrenderer of an object it is better to use a fully qualified name string or use ClassFactory?


Solution

  • itemRenderer is typed as IFactory, so ideally it should be a ClassFactory. But it seems that the compiler can figure out what you mean if you just use the fully qualified name, and the generated and compiled actionscript will use IFactory no matter what I'm guessing. I use the string just so I don't have to import ClassFactory and IFactory. If I use itemRendererFunction though, I use ClassFactory.