[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.platform.swt] Re: A standard BusyIndicator

Hi Helene,

you have to implement a runnable for each task. But this is not so
complicated. You can use the following code:

BusyIndicator.showWhile(display, new Runnable() {
    public void run() {
        // do something
    }
});

Bye Stefan

"hortiz" <hortiz@xxxxxxxxxxxx> schrieb im Newsbeitrag
news:5228f0e97490e307a350ab80e3caac1e$1@xxxxxxxxxxxxxxxxxx
> Hi,
>
> In my application, some tasks require a cursor which indicates something
> is running (as BusyIndicator does).
>
> My problem is to create a standard BusyIndicator, which could be used for
> all these tasks. Is it possible or am I obliged to implement a runnable
> for each ?
>
> Thanks
> Helene
>
>
>