Merge "Bug 2347: DOMConcurrentDataCommitCoordinator uses wrong phase name"
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / Instantiable.java
1 package org.openflow.protocol;
2
3 /**
4  *
5  * @author David Erickson (daviderickson@cs.stanford.edu)
6  */
7 public interface Instantiable<E> {
8
9     /**
10      * Create a new instance of a given subclass.
11      * @return the new instance.
12      */
13     public E instantiate();
14 }