//
//
//
//
// $Revision$
//
using System;
using System.Collections.Generic;
namespace ICSharpCode.SharpDevelop.Debugging
{
///
/// Node that can be bound to DebuggerTooltipControl.
///
public interface ITreeNode
{
string Name { get; }
string Text { get; }
string Type { get; }
IEnumerable ChildNodes { get; }
}
}