You are here

IRACFactory.java

15 January, 2016 - 09:02
Available under Creative Commons-ShareAlike 4.0 International License. Download for free at http://cnx.org/contents/402b20ad-c01f-45f1-9743-05eadb1f710e@37.6
package rac; 

/** * Abstract Factory to manufacture RACs. */ public interface IRACFactory {     /**      * Returns an empty IRAContainer.      */     public IRAContainer makeRAC(); }