views:

696

answers:

3

I've used this 'LoadingCircle' project in .net applications. Is there an equivalent component that provides a loading circle for Swing? Are there any other loading indicators available for Swing.

+1  A: 

An implementation of an infinite (circular) progress bar in Swing is available here: http://www.jroller.com/gfx/date/20050215

Swing provides standard rectangular progress bars as well: http://java.sun.com/docs/books/tutorial/uiswing/components/progress.html

anio
The first link is what I was after but it doesn't seem to have any license information. :-(
Luke Quinane
Although I'm pretty sure that the author provided the code for free as a public service, you can contact the author at: [email protected]
anio
+3  A: 

SwingLabs has a JXBusyLabel - and there's a WebStart demo available.

Nate
A: 

There is also:

Luke Quinane