Re: AWT or Swing or Any other ?
On 12/8/2012 3:42 AM, Roedy Green wrote:
On Fri, 7 Dec 2012 00:53:15 -0800 (PST), Sourabh Mhaisekar
<sourabh8044@gmail.com> wrote, quoted or indirectly quoted someone who
said :
I am relatively new into java world.
I need to build a DSS system in java.
Am confused about which GUI tool should I use.
AWT, Swing or Any other third party tool.
Nearly everything now is Swing.
see
Nah.
http://mindprod.com/jgloss/swing.html
#The biggest gotcha is that you no longer add directly to your Swing
#containers. Any content inside a JFrame should be placed inside its
#contentPane. You must do a:
#
#Container pane = swingContainer.getContentPane();
#
#and add to it. Unfortunately the add method is still defined for the
#Swing Containers to entrap the unwary.
You can certainly add directly to most containers.
And JFrame add has been forwarding to getContentPane add
since Java 1.6 (2006!).
http://mindprod.com/jgloss/awt.html
http://mindprod.com/jgloss/swt.html
http://mindprod.com/jgloss/javafx.html
#JavaFX Mobile is a platform for cell phones based on Java and Linux.
First JavaFX Mobile is only part of all JavaFX.
Second JavaFX Mobile did run on Windows Mobile, which
obviously is not Linux based.
#JavaFX Script is a statically typed scripting languages for use in
#devices such as TV set top boxes.
JavaFX Script was intended to be used on all JavaFX platforms
not just TV's.
And JavaFX Script was abandoned in JavaFX 2.x.
Arne