SIL.FieldWorks.LexText.Controls.MasterCategoryListDlg.AddNodes C# (CSharp) Method

AddNodes() private method

private AddNodes ( Set posSet, XmlNodeList nodeList, TreeNodeCollection treeNodes, SIL.FieldWorks.FDO.FdoCache cache ) : void
posSet Set
nodeList System.Xml.XmlNodeList
treeNodes System.Windows.Forms.TreeNodeCollection
cache SIL.FieldWorks.FDO.FdoCache
return void
		private void AddNodes(Set<IPartOfSpeech> posSet, XmlNodeList nodeList, TreeNodeCollection treeNodes, FdoCache cache)
		{
			foreach (XmlNode node in nodeList)
				AddNode(posSet, node, treeNodes, cache);
		}