cintoo Messages moved to Java 5
I moved cintoo Messages to JDK 1.5 because of several reasons. I know this will reduce the potential user base, but with Mustang on the horizon, a lot of projects are moving to 1.5 now or in the near feature. Beside I really like generics (being a strong opposer for some years, though IDEA could make code less noisy and hide generics completely) and Java 5 has varargs and outoboxing. This makes dealing with String formatting much easier.
Instead of:
new Integer[] { new Integer(3), new Integer(7) });
(there was a helper in Messages which took int[] )
now you can write
which is mapped to
The Object… is syntactic sugar and is automatically mapped from “3, 7″ to Object[] with
autoboxing 3 and 7 to objects.
You can leave a Reply here. Of course, you should follow me on twitter here.




