Using JavaFX Chart API to add charts to Swing applications
In our previous post we looked at how we can embed JavaFX components into Swing applications. As Java Swing lacks Charting API, we can make use of the JavaFX Chart API and not depend on other 3rd...
View ArticleDeveloping a Simple Todo Application using JavaFX, Java and MongoDB- Part-1
Over a series of 2 posts or so, I would try and show how to develop a simple Todo Desktop application using JavaFX as the Frontend, and the well known NoSQL database MongoDB as the Backend and using...
View ArticleDeveloping a Simple Todo Application using JavaFX, Java and MongoDB- Part-2
In my previous post: I setup the objective of our sample application and named it as TodoFX (I know lot of you would have missed the naming part, lack of creativity in naming drives me create...
View ArticleDeveloping a Simple Todo Application using JavaFX, Java and MongoDB- Part-3
In the previous post we created the UI for adding a new Todo where in we used a Tab, TabPane and added the required controls- TextField and a Button to the Tab. Going forward, in this post we will...
View ArticleUsing Lambda Expressions of Java 8 in Java FX event handlers
Note: The Project Lambda (JSR-335) to be added in Java 8 is evolving and the sample here is how one can use Lambdas with the current Java8 build downloaded from here. I will try to update the sample...
View Article