package org.openflow.protocol; /** * * @author David Erickson (daviderickson@cs.stanford.edu) */ public interface Instantiable { /** * Create a new instance of a given subclass. * @return the new instance. */ public E instantiate(); }