Created
May 30, 2012 22:43
-
-
Save okram/2839393 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface MetaGraph<G, V, E> extends Graph { | |
/** | |
* Get the raw underlying graph engine that exposes the Blueprints API. | |
* | |
* @return the raw underlying graph engine | |
*/ | |
public G getRawGraph(); | |
public V getRawVertex(Vertex vertex); | |
public E getRawEdge(Edge edge); | |
public Vertex createVertex(V vertex); | |
public Edge createEdge(E edge); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment