Example usage for org.apache.commons.collections15 FactoryUtils nullFactory

List of usage examples for org.apache.commons.collections15 FactoryUtils nullFactory

Introduction

In this page you can find the example usage for org.apache.commons.collections15 FactoryUtils nullFactory.

Prototype

public static Factory nullFactory() 

Source Link

Document

Gets a Factory that will return null each time the factory is used.

Usage

From source file:gov.nih.nci.cabig.caaers.web.ae.AbstractExpeditedAdverseEventInputCommand.java

public List<String> getPriorTherapyAgents() {
    return LazyList.decorate(chemoAgents, FactoryUtils.nullFactory());
}