MVC « Dialog « Java Swing Q&A





1. How to show a second MVC group as a dialog box in griffon    stackoverflow.com

I can see how to instantiate a second MVC group, e.g.

    def (loginPaneModel, loginPaneView, loginPaneController) =
        createMVCGroup('LoginPane', 'LoginPane', [:]);
   ...

2. Question on design aproaches on JDialogs in Swing applications    stackoverflow.com

Usually in a Swing application if I want to display JDialogs to the user, I create them once and then reuse them.
Usually the main JFrame has references to these JDialogs.
Sometimes though ...