Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TextFile.cs « MonoDevelop.Debugger.Tests « MonoDevelop.Debugger « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a674bf41735d92ec1ca0c76cdf9406128a02ef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using MDTextFile = MonoDevelop.Projects.Text.TextFile;

namespace Mono.Debugging.Tests
{
	public class TextFile : ITextFile
	{
		readonly MDTextFile file;

		public TextFile (MDTextFile file)
		{
			this.file = file;
		}

		/// <summary>
		/// Content of the file
		/// </summary>
		public string Text
		{
			get{
				return file.Text;
			}
		}

		/// <summary>
		/// Full path to file
		/// </summary>
		public string Name
		{
			get{
				return file.Name;
			}
		}

		/// <summary>
		/// Returns line and column (1-based) by given offset (0-based)
		/// </summary>
		/// <param name="offset">0-based</param>
		/// <param name="line">1-based</param>
		/// <param name="col">1-based</param>
		public void GetLineColumnFromPosition (int offset, out int line, out int col)
		{
			file.GetLineColumnFromPosition (offset, out line, out col);
		}

		/// <summary>
		/// Returns offset by given line and column (1-based)
		/// </summary>
		/// <param name="line">line (1-based)</param>
		/// <param name="column">column (1-based)</param>
		/// <returns>offset (0-based)</returns>
		public int GetPositionFromLineColumn (int line, int column)
		{
			return file.GetPositionFromLineColumn (line, column);
		}

		/// <summary>
		/// Returns the text starting from <paramref name="offset"/> with length=<paramref name="length"/>
		/// </summary>
		/// <param name="offset">0-based starting offset</param>
		/// <param name="length">length of text</param>
		/// <returns></returns>
		public string GetText (int offset, int length)
		{
			return file.GetText (offset, length);
		}

		/// <summary>
		/// Returns length of the given line (1-based)
		/// </summary>
		/// <param name="line">1-based line</param>
		/// <returns></returns>
		public int GetLineLength (int line)
		{
			return file.GetLineLength (line);
		}
	}
}