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
2009-07-09 00:46:52
The first link is what I was after but it doesn't seem to have any license information. :-(
Luke Quinane
2009-07-09 01:04:03
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
2009-07-09 01:27:33
A:
There is also:
- A LGPL "loading cicle" here (from Daniel Schneller's answer).
- Another LGPL "jbusycomponent" here (from willcodejavaforfood answer).
Luke Quinane
2009-07-16 00:56:32