/Debugger/ILSpy.Debugger/Models/TreeModel/ISetText.cs
http://github.com/icsharpcode/ILSpy · C# · 13 lines · 9 code · 2 blank · 2 comment · 0 complexity · 2cfeedb2e4161db46edfc8fcf35e86d2 MD5 · raw file
- // Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
- // This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
- using System;
- namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
- {
- internal interface ISetText
- {
- bool CanSetText { get; }
-
- bool SetText(string text);
- }
- }