IRACFactory.java
Created with JBuilder
package rac;

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



IRACFactory.java
Created with JBuilder