I am looking for a way to display an animated progress indicator (animated GIF, a rotating wheel rendered through Java2D etc., no preference here) in a table cell until the
First I went with the same idea Nick Fortescue had (Method2). However just after that I stumbled across
The rabbit hole blog
where the author provides very usefu classes for animated icons (based on GIFs) as well as a Java2D drawn infinite progress indicator (the famous Mac OS X like spinning wheel) which I could just drop into my application without having to worry about too much painting myself.
However had I not found these, Nick's way would have been it.