jfun.parsec
Interface ArrayFactory<T>

All Superinterfaces:
java.io.Serializable

public interface ArrayFactory<T>
extends java.io.Serializable

A factory to create arrays.

Author:
Ben Yu Nov 19, 2004

Method Summary
 T[] createArray(int len)
          Create an array of length len.
 

Method Detail

createArray

T[] createArray(int len)
Create an array of length len.

Parameters:
len - the array length.
Returns:
the array.