Re: How do you remove a handler?

2009-03-04 Thread Ian Bambury
Ah! Thanks very much for that. Ian http://examples.roughian.com 2009/3/4 Jason Morris lem...@gmail.com Hi Ian All of the add*Handler methods return a HandlerRegistration object, you keep a reference to it, and then invoke HandlerRegistration.removeHandler() when you want to remove it.

Re: How do you remove a handler?

2009-03-03 Thread Jason Morris
Hi Ian All of the add*Handler methods return a HandlerRegistration object, you keep a reference to it, and then invoke HandlerRegistration.removeHandler() when you want to remove it. I wasn't to sure of whether I liked it or not at first, but it does make automated removal of Handlers on