|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface HandlerRegistration
Registration objects returned when an event handler is bound (e.g. via
EventBus.addHandler(com.google.web.bindery.event.shared.Event.Type
), used to deregister.
A tip: to make a handler deregister itself try something like the following:
new MyHandler() {
HandlerRegistration reg = MyEvent.register(eventBus, this);
public void onMyThing(MyEvent event) {
/* do your thing */
reg.removeHandler();
}
};
Method Summary | |
---|---|
void |
removeHandler()
Deregisters the handler associated with this registration object if the handler is still attached to the event source. |
Method Detail |
---|
void removeHandler()
|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |