Question
What to do when the FrontController grows very big
What do I do when the frontcontroller of my application becomes monolithic in size? Say there are now a thousand different user gestures. Is it considered best practice to write 1000 "addCommand" lines of code in a single file? Is there a recommended practice for subclassing an application's FrontController? Could there ever be multiple FrontControllers in an application, perhaps one for each logical partition of the application?
