Interface INode
Common interface implemented by all filter framework specific nodes in the editor.
Inherited Members
Namespace: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public interface INode : IAbstractNode, ITreeNode<IAbstractNode, IAbstractContainerNode>Remarks
Provides the infrastructure for a visitor pattern that covers all types of framework nodes.
Methods
AcceptNodeVisitor(INodeVisitor)
Visitor pattern for framework node visitors.
Declaration
void AcceptNodeVisitor(INodeVisitor visitor)Parameters
| Type | Name | Description | 
|---|---|---|
| INodeVisitor | visitor | the visitor, which the node implementation will call back on |