1 2 3 4 5 6 7 8 9 10 11 12 13
package com.c2kernel.graph.model; public interface VertexFactory { public void create ( GraphModelManager graphModelManager, GraphPoint location, TypeNameAndConstructionInfo typeNameAndConstructionInfo ) throws Exception; public void setCreationContext(Object newContext); }