Example usage for org.apache.commons.collections.list GrowthList GrowthList

List of usage examples for org.apache.commons.collections.list GrowthList GrowthList

Introduction

In this page you can find the example usage for org.apache.commons.collections.list GrowthList GrowthList.

Prototype

public GrowthList() 

Source Link

Document

Constructor that uses an ArrayList internally.

Usage

From source file:de.innovationgate.webgate.api.WGDocumentListCache.java

public WGDocumentListCache clone() {

    WGDocumentListCache newCache = new WGDocumentListCache();
    newCache._keys = new GrowthList();
    newCache._keys.addAll(_keys);/*w  w w  .  j av  a 2s.c o  m*/
    newCache._complete = _complete;
    newCache._reachedEnd = _reachedEnd;
    return newCache;

}

From source file:org.gradle.webservice.TestTest.java

public void method() {
    FilenameUtils.separatorsToUnix("my/unix/filename");
    ToStringBuilder.reflectionToString(new Person("name"));
    new GrowthList();
    new PersonList().doSomethingWithImpl(); // compile with api-spi, runtime with api
}