/**
  * Gets the jQuery statement.<br>
  * <b>Warning: </b> This method is *not* called by the behavior directly (only {@link #$()} is).
  *
  * @param options the options to be supplied to the current method
  * @return the jQuery statement
  */
 public String $(String options) {
   return JQueryBehavior.$(this.selector, this.method, options);
 }
 @Override
 protected String $() {
   return JQueryBehavior.$(this.selector, this.method, this.options.toString());
 }