/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

  1. // Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
  2. // This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
  3. using System;
  4. namespace ICSharpCode.ILSpy.Debugger.Models.TreeModel
  5. {
  6. internal interface ISetText
  7. {
  8. bool CanSetText { get; }
  9. bool SetText(string text);
  10. }
  11. }