> I've implemented an ObservableCollection decorator that is
> based upon the dynamic proxy paradigm. With only a few lines of
> code, this implementation allows the following:

> Buffer buffer=new BoundedFifoBuffer();
> ObservableCollection observable=ObservableCollectionUtil.decorate(buffer);
> assert observable instanceof Buffer;
> assert observable instanceof BoundedCollection;

> I thought I could share.

Serendipitously, Stephen Colebourne was just looking at a very similar issue
(serializable decoractors), and might find your approach interesting.

        --- Noel


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to