C# Class SWFProcessing.Swiffotron.Processor.DependencyList

Maps nodes in the XML to their dependency nodes for the purposes of working out what to do first.
显示文件 Open project: WeeWorld/Swiffotron Class Usage Examples

Public Methods

Method Description
AddDependency ( XPathNavigator dep ) : void

Add a new dependency for this node.

DependencyList ( XPathNavigator n, List d ) : System.Collections.Generic

Initializes a new instance of the DependencyList class.

RemoveDependency ( XPathNavigator dep ) : void

Remove a dependency from this node.

Method Details

AddDependency() public method

Add a new dependency for this node.
public AddDependency ( XPathNavigator dep ) : void
dep System.Xml.XPath.XPathNavigator The dependency node.
return void

DependencyList() public method

Initializes a new instance of the DependencyList class.
public DependencyList ( XPathNavigator n, List d ) : System.Collections.Generic
n System.Xml.XPath.XPathNavigator A navigator node
d List The current list of dependencies
return System.Collections.Generic

RemoveDependency() public method

Remove a dependency from this node.
public RemoveDependency ( XPathNavigator dep ) : void
dep System.Xml.XPath.XPathNavigator The dependency to remove.
return void