/**
  * Fires a open event on all registered handlers in the handler manager.If no such handlers exist,
  * this method will do nothing.
  *
  * @param <S> The event source
  * @param source the source of the handlers
  * @param jsObj the native event
  */
 public static <S extends HasFieldStateChangedHandlers & HasHandlers> void fire(
     S source, JavaScriptObject jsObj) {
   if (TYPE != null) {
     FieldStateChangedEvent event = new FieldStateChangedEvent(jsObj);
     source.fireEvent(event);
   }
 }
 /**
  * Fires a open event on all registered handlers in the handler manager.If no such handlers exist,
  * this method will do nothing.
  *
  * @param <S> The event source
  * @param source the source of the handlers
  * @param jsObj the native event
  */
 public static <S extends HasCellMouseUpHandlers & HasHandlers> void fire(
     S source, JavaScriptObject jsObj) {
   if (TYPE != null) {
     CellMouseUpEvent event = new CellMouseUpEvent(jsObj);
     source.fireEvent(event);
   }
 }
 /**
  * Fires a open event on all registered handlers in the handler manager.If no such handlers exist,
  * this method will do nothing.
  *
  * @param <S> The event source
  * @param source the source of the handlers
  * @param jsObj the native event
  */
 public static <S extends HasRecordContextClickHandlers & HasHandlers> void fire(
     S source, JavaScriptObject jsObj) {
   if (TYPE != null) {
     RecordContextClickEvent event = new RecordContextClickEvent(jsObj);
     source.fireEvent(event);
   }
 }