package rac; /** * Abstract Factory to manufacture RACs. * @author Mathias Ricken - Copyright 2008 - All rights reserved. */ public interface IRACFactory { /** * Returns an empty IRAContainer. */ public abstract IRAContainer makeRAC(); }