|
|
Archive for the 'information' Category
Friday 13 June 2008 @ 2:58 am
Consider the following code.. try{ while(true){ System.out.println("test"); } } catch(SQLException e){ System.out.println(e); } This wouldn’t even compile because SQLException is a checked exception and it isn’t being thrown from anywhere in the try block.
Friday 16 May 2008 @ 3:25 am
Never call Swing as Swings. Remember that Java Swing is a Proper noun, and should never be called as Java Swings Iam not sure why people do that. I guess it has to do something with the name, somehow “Swings” doesn’t look as awkward as “Javas”. Do you know of any other technology where such a common mistake is done in spelling it’s name?
Thursday 15 May 2008 @ 5:21 am
As you might know, Swing was not the first GUI framework created by SUN. The first one was called as the Abstract Window Toolkit(AWT, shortly). AWT worked very similar to how other GUI tools, like, for eg., Visual Basic worked. It worked by translating the components it provided into platform specific counter parts called as native-peers. Thus, AWT components are sometimes referred to as heavy weight components. |
Popular Articles
Blog Categories
Monthly Archives
Resources
|