edu.ksu.cis.cadena.core.util
Interface IFactory<K,V>

Type Parameters:
K - The type of the key that the factory works on
V - The type of the value that the factory produces

public interface IFactory<K,V>

An IFactory creates objects of one time based on inputs of another type.

Author:
jesse

Method Summary
 V createItem(K key)
          Create an item.
 

Method Detail

createItem

V createItem(K key)
Create an item.

Parameters:
key - The key of the item to create.
Returns:
The created item.