In my previous post I showed different ways in which we can parse XML document in Java. You must have noticed the code being too much verbose. Other JVM languages like Groovy, Scala provide much better support for parsing XML… Read More ›
Groovy
Sample application using JavaFX 2.0 beta and the after thoughts
This sample uses- TabPane, GridView and Bindings in javafx 2.0. I had quite sometime back played around with JavaFX and had good and bad experiences using the language. With the JavaFX 2.0 beta being released I thought of giving it… Read More ›
Parsing XML is fun again- thanks to Groovy
I happened to work on Groovy while I was developing using Gaelyk and I found Groovy lot easier to write- I never thought of the types and this really helped me to make my code simpler and easier to write…. Read More ›
Selection Sort: Brute Force approach to sorting with example in Groovy
In Selection sort technique the list is scanned to find the smallest element and it is then exchanged with the first element, putting the smallest element in its final position i.e at the beginning. Then the list is scanned starting… Read More ›