This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Swing / AWT / SWT and the fly likes why use static method in creating gui Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "why use static method in creating gui" Watch "why use static method in creating gui" New topic
Author

why use static method in creating gui

amit sharma
Ranch Hand

Joined: Jul 19, 2006
Posts: 129
I am to new to swing.When i search tutorial for swing i see that most of them create gui in static method .What is the purpose of it .When i make gui in static method i am not able to add listener for it.Can anyone please tell me what is the preferred way of developing desktop application using swing.
Thanks
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

I assume you are talking about something like this:



The reason that createAndShowGUI() is static is because it's being called from a static method, main(String[] args). You can not call non-static methods from a static method, so createAndShowGUI() has to be static.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: why use static method in creating gui
 
Similar Threads
Java GUI front End
Swing & XML
Java Question
UML for a swing application
How to make globally defined buttons, textfields, known inside separate class files?