Example usage for org.apache.commons.collections.functors ChainedTransformer getInstance

List of usage examples for org.apache.commons.collections.functors ChainedTransformer getInstance

Introduction

In this page you can find the example usage for org.apache.commons.collections.functors ChainedTransformer getInstance.

Prototype

public static Transformer getInstance(Collection transformers) 

Source Link

Document

Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.

Usage

From source file:org.mmadsen.sim.transmissionlab.util.PopulationRuleset.java

private void recreateRuleSet() {
    this.ruleset = null;
    this.ruleset = (ChainedTransformer) ChainedTransformer.getInstance(this.ruleList);
}