view src/main/java/jungle/core/graph/Graph.java @ 8:abed5bd92fcb

commit
author shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
date Tue, 03 Jul 2012 18:59:28 +0900
parents 761d04aecfcb
children
line wrap: on
line source

package jungle.core.graph;

/*
 * multiedge property graph
 */
public interface Graph
{
	public Vertex getVertex(String _id);
	public Vertex createVertex(String _id);
	public Vertex createVertex();
	public Vertex cloneVertex(Vertex _base);
	public Vertex cloneVertex(String _id,Vertex _base);
	
	public boolean isSameGraph(Graph _g);
}