Is AWT obsoleted

Swing has become the most popular GUI technology for java program. Althought Swing is based on AWT, developers don't use AWT component in their project. Does that mean Swing components has replaced AWT components? Is there any condition that only AWT components can do while Swing can't?
[296 byte] By [youhaodiyia] at [2007-11-27 8:48:26]
# 1

AWT is more useful when dealing with java deployment on mobile devices such as handheld, PDA. This is because special JVM (for CLDC), for example IBM J9 doesn't support Swing. Besides, it is nearly impossible to run Swing application on mobile devices due to performance problem, AWT or SWT is preferred.

money_0422a at 2007-7-12 20:55:27 > top of Java-index,Desktop,Core GUI APIs...