001package org.jadira.scanner.core.api; 002 003public interface Allocator<T,E> { 004 005 T allocate(E e); 006}