/**
  * Remove all the property change handlers on the specified property.
  *
  * @param propID the property id
  */
 public final void removeAllPropertyChangeHandlers(final String propID) {
   WidgetPropertyChangeListener listener = propertyListenerMap.get(propID);
   if (listener != null) {
     listener.removeAllHandlers();
   }
 }