I released bindgen 2.16 today, which has a small fix for properties
being read-only if their generic version was defined in an interface.
E.g. With an interface `Set<T>`, that has a method `add(T add)`, if you
had a type `StringSet implements Set<String>`, the
`StringSetBinding.add` binding would have been read-only.
This was a bug found by David Shepherdson, that I completely forgot
about until I wandered across bindgen's failing hudson build today.
- Stephen
On 25 Oct 2010, at 7.39 am, Stephen Haberman wrote:
> I released bindgen 2.16 today, which has a small fix for properties
> being read-only if their generic version was defined in an interface.
Thanks for that (and the 2.17 that followed shortly after).
Sorry, I never got around to thanking you for your super-speedy turnaround in integrating my last set of bugfixes in bindgen 2.15. Things got very hectic here with multiple major releases of our system needing to happen in quick succession, but your timing was perfect so that we were able to include the proper release of bindgen 2.15 rather than my locally-patched version!
David