コード例 #1
0
ファイル: NodeFactory.cs プロジェクト: drake7707/nodecontrol
 internal FactoryCollection(NodeDiagram owner)
 {
     this.lst   = new List <NodeFactory>();
     this.owner = owner;
 }
コード例 #2
0
ファイル: NodeFactory.cs プロジェクト: drake7707/nodecontrol
 /// <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);