internal FactoryCollection(NodeDiagram owner) { this.lst = new List <NodeFactory>(); this.owner = owner; }
/// <summary> /// Creates a node for the given node diagram /// </summary> /// <param name="diagram">The diagram that will own the node</param> /// <returns>A created node</returns> public abstract Node CreateNode(NodeDiagram diagram);