show/hide this revision's text 2 added 333 characters in body

I think JavaFX is more like Flex. From what I can tell, the thought that went behind because JavaFX is forward-thinkingmore about building applications than animations (which is, so I wouldn't expect it to be a rehash of an older technology; it has been created in light gather, one of newer technologies - the sensitive distinctions between Flex , Silverlight, OpenLaszlo, and so onFlash).

I think of JavaFX and Flex as the future heirs to Rich Internet Application programming. They're both intended to stretch the realm of what's possible with RIA.

One of the biggest benefits of JavaFX that I see is that you can use your existing Java business logic by simply importing it.

Some of the language features, such as binding and time duration as a data type, are paradigm-shifting, because they make certain functionality possible and readily available:

  • Binding: Connecting two values together, so you can automatically update one value when the other updates. Example: "name: bind textfield.getValue". Much easier than setting up Observer patterns to watch for changes to variables.
  • Duration can be used as a data type: "var frameDelay = 5ms". Having Duration as an integral part of the language seems like a no-brainer when dealing with animations.
show/hide this revision's text 1

I think JavaFX is more like Flex. From what I can tell, the thought that went behind JavaFX is forward-thinking, so I wouldn't expect it to be a rehash of an older technology; it has been created in light of newer technologies - Flex, Silverlight, OpenLaszlo, and so on.

One of the biggest benefits of JavaFX that I see is that you can use your existing Java business logic by simply importing it. Some of the language features, such as binding and time as a data type, are paradigm-shifting.