Example usage for org.apache.commons.collections.primitives ArrayCharList ArrayCharList

List of usage examples for org.apache.commons.collections.primitives ArrayCharList ArrayCharList

Introduction

In this page you can find the example usage for org.apache.commons.collections.primitives ArrayCharList ArrayCharList.

Prototype

public ArrayCharList() 

Source Link

Document

Construct an empty list with the default initial capacity.

Usage

From source file:tokyo.northside.jrst.AdvancedReader.java

/**
 * //from www. j a va 2 s. c o  m
 * @param in the io reader
 */
public AdvancedReader(Reader in) {
    this.in = new LineNumberReader(in);
    buffer = new ArrayCharList();
}