1 package cz.cuni.amis.utils.objectmanager;
2
3 /**
4 * Simple factory interface for any kind of object.
5 *
6 * @author Jimmy
7 *
8 * @param <Producing>
9 */
10 public interface IObjectFactory<Producing> {
11
12 public Producing newObject();
13
14 }