I am working on a project, which uses PureMVC Standard. Now I need to add a new module SWF, which also uses Standard. I know the solution is to replace Standard MVC with MultiCore MVC, but there are two problems:
- Standard's package structure is different from MultiCore's - do I have to correct this manually?
- Under standard mvc framework, some code in the constructor of
Mediator
is allowed, while in MultiCore, this seems to be absolutely forbidden - so do I have to change so many constructors to get rid of this?
And finally: Other than replacing Standard with MultiCore, is there any better way to resolve the problem?