25 lines
658 B
C#
25 lines
658 B
C#
// <file>
|
|
// <copyright see="prj:///doc/copyright.txt"/>
|
|
// <license see="prj:///doc/license.txt"/>
|
|
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
|
|
// <version>$Revision$</version>
|
|
// </file>
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ICSharpCode.TextEditor.Document
|
|
{
|
|
/// <summary>
|
|
/// This interface is used for the folding capabilities
|
|
/// of the textarea.
|
|
/// </summary>
|
|
public interface IFoldingStrategy
|
|
{
|
|
/// <remarks>
|
|
/// Calculates the fold level of a specific line.
|
|
/// </remarks>
|
|
List<FoldMarker> GenerateFoldMarkers(IDocument document, string fileName, object parseInformation);
|
|
}
|
|
}
|