InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Swing And Awt Components? |
|
Answer» AWT components are heavy-weight, WHEREAS Swing components are lightweight. Heavy weight components DEPEND on the local windowing toolkit. For example, java.awt. Button is a heavy weight COMPONENT, when it is running on the Java platform for Unix platform, it MAPS to a REAL Motif button. AWT components are heavy-weight, whereas Swing components are lightweight. Heavy weight components depend on the local windowing toolkit. For example, java.awt. Button is a heavy weight component, when it is running on the Java platform for Unix platform, it maps to a real Motif button. |
|