View Single Post
  #2 (permalink)  
Old 12-21-2007, 10:33 PM
G_Morgan G_Morgan is offline
Guru
 
Join Date: Oct 2007
Age: 24
Posts: 466
Last Blog:
Just over the next hil...
Credits: 82
Rep Power: 10
G_Morgan has a spectacular aura aboutG_Morgan has a spectacular aura aboutG_Morgan has a spectacular aura about
Default

One comes from the old AWT widget set (so called heavyweight components) the J* ones are from the newer Swing set.

Basically, AWT has a lot more native code behind it than Swing. Swing takes the minimum amount of AWT necessary and reimplements the rest in Java on top of that thin AWT layer. The practical difference is that Swing behaves pretty much perfectly equivalent on each platform while AWT has subtle differences.

I'd stick with Swing nearly exclusively. There is nothing to be gained by using AWT.
Reply With Quote