Example usage for org.apache.commons.jelly XMLOutput setContentHandler

List of usage examples for org.apache.commons.jelly XMLOutput setContentHandler

Introduction

In this page you can find the example usage for org.apache.commons.jelly XMLOutput setContentHandler.

Prototype

public void setContentHandler(ContentHandler contentHandler) 

Source Link

Document

Sets the SAX ContentHandler to pipe SAX events into

Usage

From source file:hudson.util.TableNestChecker.java

public static void applyTo(XMLOutput xo) {
    xo.setContentHandler(new TableNestChecker(xo.getContentHandler()));
}