| Author |
Swing an AWT
|
jignesh soni
Ranch Hand
Joined: Dec 10, 2007
Posts: 147
|
|
|
what makes awt a heavy weight component and Swing , a light weight component ?
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24081
|
|
For AWT buttons (for example), Java asks the operating system to draw a button. So, for example, a Windows control is created. The AWT component then has to keep track of a pointer to this native Windows button, and remember to dispose of it at some point. Making all these calls to the OS is what's considered "heavyweight". For Swing buttons, the button is drawn on the screen in Java code. There are no native controls, no remembering to dispose of anything -- hence they are independent, free, "lightweight."
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: Swing an AWT
|
|
|