dajood
dajood

Reputation: 4050

Where to get information about API changes between JavaFX 2 and 8?

Where can i find informations on API changes between JavaFX 2.x and JavaFX 8? When i try to let my project run on a JDK 8 preview, i see that some things are broken - even if some of that might have its reason in the immaturity of a preview version, i'd also like to know how the APIs and the CSS changes between the two versions.

Upvotes: 3

Views: 543

Answers (3)

Sergey Grinev
Sergey Grinev

Reputation: 34508

Once JDK8 released most probably there would be "JavaFX Compatibility Guide" posted, similar to JDK one.

But anyway JavaFX 8 is expected to be backward compatible to JavaFX 2. If you met any issues, please, file them at http://javafx-jira.kenai.com

Upvotes: 4

assylias
assylias

Reputation: 328608

Apart from browsing jira and checking what features are targeted for Lombard (= JavaFX 8), and following FX Experience, you can also find some information about new features on the wiki, such as:

  • 3D features
  • Rich Text API
  • TreeTableView

Upvotes: 1

mKorbel
mKorbel

Reputation: 109813

  • all important (news, roadmap, rellease candinates) is on FX Experience

Upvotes: 1

Related Questions