|
From: Bill H. <bi...@lo...> - 2002-12-12 13:23:52
|
Bas,
On Thu, 2002-12-12 at 13:00, Bas Cancrinus wrote:
> Can't you work around the problem with static variables? Like:
>
> private static boolean reloadFlag;
>
> static {reloadFlag = true;}
> protected ReloadMonitor(...) {
> ...
> reloadFlag = false;
> }
> protected boolean isProxoolReloaded() {
> if (reloadFlag) {
> ...
> return true;
> } else {
> return false;
> }
> }
I see what you're trying to do here. It looks like it might work. It's
nice and simple. Definitely worth a try. I'll see if I can test it
later.
Bill
|