vote up 1 vote down star

If I have Swing GUI class and application, how should I manage communication between these objects? Should I pass GUI object link to app or app link to GUI?

Example:

public class App{

public App() { GUI gui = new GUI(this) }

}

or

public GUI{ public GUI() { App gui = new App(this) } }

flag

2 Answers

vote up 2 vote down

Have a look at the MVC pattern. Ideally you want to present your application such that different GUI components can make use of it (imagine later providing a web/servlet view of your application, or a command-line interface). That requirement prohibits your application having implicit Swing knowledge.

link|flag
Note that in this case, it's OK to implement the view and controller in the same object (as in solution 2 of the OP). The separation between view and controller is only well defined in web applications where the browser is the view. – wcoenen May 3 at 23:35
There's nothing special about web applications wrt. MVC – Brian Agnew May 4 at 8:22
vote up 0 vote down

Yes the MVC pattern will help. You really want to remove the tight coupling between the two components. Or at the VERY least, go with the latter, meaning:

public GUI {
    public GUI() {
         App gui = new App(this)
    }
}

That way, atleast your application logic doesn't rely on, or is bound to, you GUI.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.