This allows me to implement activity notification differently in the
Eclipse embedding. My UI options are more limited because I'm not
responsible for rendering tabs but I can make the tab title italic so
I've gone with that.
Are you happy with moving the spinner in this way? It seems to make
things clearer - it was a bit confusing having it owned by a component
that wasn't its UI parent.
Thanks,
Matt.
I'd wondered that when removing the line but by the time I came to add
it back in it had slipped my mind.
> Being a C++ programmer, I was a bit surprised by the name here, though
> the idiom, of a default listener that does nothing, was familiar:
>
> + ActivityMonitor NULL = new ActivityMonitor() {
>
> The first extant example of that idiom that I found was NoOpRunnable.
> Of course, that has be defined outside the interface that we don't own.
> I see we have a NoOpAction and a NoOpIndenter too. Some precedent
> there, then.
Yeah, I can see how that would look weird from a C/C++ POV. I think
it's pretty common in Java. Anyway, not needed with Elliott's switch to
using ChangeListener.
Thanks,
Matt.
Thanks, that works great.
Matt.