protected XMLEventRenderer getXmlRenderer(EventType eventType) {
   return runtime.getEventRenderer().getXMLRenderer(eventType, RenderingOptions.getXmlOptions());
 }
 /**
  * Adds the chaining callback to the given options. Pulled out to allow subclasses to override.
  *
  * @param options options to add the chaining callback to
  */
 protected void addChainingCallback(final RenderingOptions options) {
   // Set the callback.
   options.callback = new ChainingCallback(options.callback);
 }
 protected JSONEventRenderer getJsonRenderer(EventType eventType) {
   return runtime
       .getEventRenderer()
       .getJSONRenderer(eventType, RenderingOptions.getJsonOptions());
 }