package com.c2kernel.graph.model; import java.awt.Point; public interface VertexFactory { public void create ( GraphModelManager graphModelManager, Point location, TypeNameAndConstructionInfo typeNameAndConstructionInfo ) throws Exception; public void setCreationContext(Object newContext); }