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

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

Introduction

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

Prototype

public ContentHandler getContentHandler() 

Source Link

Usage

From source file:hudson.util.TableNestChecker.java

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