public static LayeredGraphEdge makeLayeredGraphEdge(LayeredGraph G, IFigureConstructionEnv env, IConstructor c,
PropertyManager properties) {
IString from = (IString)c.get(0);
IString to = (IString)c.get(1);
return new LayeredGraphEdge(G, env, properties, from, to);
}