Skip to content

Instantly share code, notes, and snippets.

@okram
Created May 30, 2012 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save okram/2839393 to your computer and use it in GitHub Desktop.
Save okram/2839393 to your computer and use it in GitHub Desktop.
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