clearListeners method

void clearListeners()
inherited

This function unbinds all the handlers for all the events.

Implementation

void clearListeners() {
  this._events = new HashMap<String, List<EventHandler>>();
  this._eventsOnce = new HashMap<String, List<EventHandler>>();
  this._eventsAny.clear();
}