Index: src/Plugins/Wti/Wti.Forms/NodePresenters/PipingNodePresenterBase.cs =================================================================== diff -u -rfa9b36343401d44cb6813d7871903782d0dedec9 -r9e0b372066f8d8be8c231b3be8922d29a1c61e1f --- src/Plugins/Wti/Wti.Forms/NodePresenters/PipingNodePresenterBase.cs (.../PipingNodePresenterBase.cs) (revision fa9b36343401d44cb6813d7871903782d0dedec9) +++ src/Plugins/Wti/Wti.Forms/NodePresenters/PipingNodePresenterBase.cs (.../PipingNodePresenterBase.cs) (revision 9e0b372066f8d8be8c231b3be8922d29a1c61e1f) @@ -107,114 +107,114 @@ } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected abstract void UpdateNode(ITreeNode parentNode, ITreeNode node, T nodeData); /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual IEnumerable GetChildNodeObjects(T nodeData, ITreeNode node) { return Enumerable.Empty(); } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual void OnNodeRenamed(T nodeData, string newName) { throw new InvalidOperationException(string.Format("Cannot rename tree node of type {0}.", GetType().Name)); } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual DragOperations CanDrag(T nodeData) { return DragOperations.None; } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual DragOperations CanDrop(T item, ITreeNode sourceNode, ITreeNode targetNode, DragOperations validOperations) { return DragOperations.None; } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual bool CanInsert(T item, ITreeNode sourceNode, ITreeNode targetNode) { return false; } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual void OnDragDrop(T item, object sourceParentNodeData, object targetParentNodeData, DragOperations operation, int position) { // Do nothing } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual void OnNodeSelected(T nodeData) { // Do nothing } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual ContextMenuStrip GetContextMenu(ITreeNode sender, T nodeData) { return null; } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual void OnPropertyChanged(T sender, ITreeNode node, PropertyChangedEventArgs e) { // Do nothing } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual void OnCollectionChanged(T sender, NotifyCollectionChangingEventArgs e) { // Do nothing } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual bool CanRemove(object parentNodeData, T nodeData) { return false; } /// - /// Typed implementation method of . + /// Typed implementation of method . /// - /// + /// protected virtual bool RemoveNodeData(object parentNodeData, T nodeData) { throw new InvalidOperationException(String.Format("Cannot delete node of type {0}.", GetType().Name));