Even though AWT is powerful, there are many compelling reasons as to why Swings is a more successful and preferred choice for UI programmers. They are:
1. Swing has a rich and convenient set of user interface elements.
2. Swing has few dependencies on the underlying platform. This means that it is less prone to platform-specific bugs.
3. Swing gives a consistent user experience across platforms.
swing technology
Swing is a package in Java which contains tools for building GUI application. Swing is a part of Java's foundation classes.
You really don't want to do that. Swing is for desktop applications. If you want to create a website, use Java Server Faces or Applets, not Swing.
It is a part of swing package.
Yes.
Java Swing might be needed by someone because Swing provides a native look and feel that matches the look and feel of several platforms, with more powerful and flexible components than AWT.
The getContentPane() method is used to get the main component in a Java Swing JFrame. It is usually a JPanel.
Java Swings is a technology that is used to create User Interface Components using Java. Swing Events are a part of this technology that is used to handle user actions like click of a button or closing the component etc
we can set the value of constant text area in Java in swing by creating a object of Jframe
Swing is a library of GUI controls. Classes in swing are not OS dependent. They do not take the look and feel of the target platform so that they have a consistent appearance.
Mobile project doc ? its not clear which kind docs required , bcoz mobile diff client are there BREW ,WAP,J2me Brew (MIxed the java and c tech) WAP fully java , j2me .. adv, java .
I think you may have your terminology off a bit.javax.swing is a Java package of graphical user interface (GUI) classes.An Applet is a class designed to be embedded in a web browser.Among the classes in the Swing package is JApplet, which is an Applet extended to work with Swing components.There really is no "advantage" of one thing over the other. They are just different, if related, parts of Java.