001    package rac;
002    
003    /**
004     * Abstract Factory to manufacture RACs.
005     * @author Mathias Ricken - Copyright 2008 - All rights reserved.
006     */
007    public interface IRACFactory<T> {
008        /**
009         * Returns an empty IRAContainer.
010         */
011        public abstract IRAContainer<T> makeRAC();
012    }
013