edu.stanford.nlp.util
Interface Factory<T>

All Superinterfaces:
java.io.Serializable

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

A generified factory class which creates instances of a particular type.

Author:
dramage

Method Summary
 T create()
          Creates and returns a new instance of the given type.
 

Method Detail

create

T create()
Creates and returns a new instance of the given type.

Returns:
A new instance of the type T


Stanford NLP Group