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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/core/Mono.Texteditor/Mono.TextEditor/Document/IBuffer.cs')
-rw-r--r--main/src/core/Mono.Texteditor/Mono.TextEditor/Document/IBuffer.cs131
1 files changed, 0 insertions, 131 deletions
diff --git a/main/src/core/Mono.Texteditor/Mono.TextEditor/Document/IBuffer.cs b/main/src/core/Mono.Texteditor/Mono.TextEditor/Document/IBuffer.cs
deleted file mode 100644
index 0cfffef74e..0000000000
--- a/main/src/core/Mono.Texteditor/Mono.TextEditor/Document/IBuffer.cs
+++ /dev/null
@@ -1,131 +0,0 @@
-// IBuffer.cs
-//
-// Author:
-// Mike Krüger <mkrueger@novell.com>
-//
-// Copyright (c) 2007 Novell, Inc (http://www.novell.com)
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to deal
-// in the Software without restriction, including without limitation the rights
-// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-// copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-// THE SOFTWARE.
-//
-//
-
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-namespace Mono.TextEditor
-{
- public interface IBuffer
- {
- /// <summary>
- /// Gets the total text length.
- /// </summary>
- /// <returns>The length of the text, in characters.</returns>
- /// <remarks>This is the same as Text.Length, but is more efficient because
- /// it doesn't require creating a String object.</remarks>
- int TextLength {
- get;
- }
-
- /// <summary>
- /// Gets the whole text as string.
- /// </summary>
- string Text {
- get;
- set;
- }
-
- /// <summary>
- /// Replaces text.
- /// </summary>
- /// <param name="offset">The starting offset of the text to be replaced.</param>
- /// <param name="count">The length of the text to be replaced.</param>
- /// <param name="value">The new text.</param>
- void Replace (int offset, int count, string value);
-
- /// <summary>
- /// Retrieves the text for a portion of the document.
- /// </summary>
- /// <exception cref="ArgumentOutOfRangeException">offset or length is outside the valid range.</exception>
- /// <remarks>This is the same as Text.Substring, but is more efficient because
- /// it doesn't require creating a String object for the whole document.</remarks>
- string GetTextAt (int offset, int count);
-
- /// <summary>
- /// Gets a character at the specified position in the document.
- /// </summary>
- /// <paramref name="offset">The index of the character to get.</paramref>
- /// <exception cref="ArgumentOutOfRangeException">Offset is outside the valid range (0 to TextLength-1).</exception>
- /// <returns>The character at the specified position.</returns>
- /// <remarks>This is the same as Text[offset], but is more efficient because
- /// it doesn't require creating a String object.</remarks>
- char GetCharAt (int offset);
-
- /// <summary>
- /// Gets the index of the first occurrence of the character in the specified array.
- /// </summary>
- /// <param name="c">Character to search for</param>
- /// <param name="startIndex">Start index of the area to search.</param>
- /// <param name="count">Length of the area to search.</param>
- /// <returns>The first index where the character was found; or -1 if no occurrence was found.</returns>
- int IndexOf (char c, int startIndex, int count);
-
- /// <summary>
- /// Gets the index of the first occurrence of any character in the specified array.
- /// </summary>
- /// <param name="anyOf">Characters to search for</param>
- /// <param name="startIndex">Start index of the area to search.</param>
- /// <param name="count">Length of the area to search.</param>
- /// <returns>The first index where any character was found; or -1 if no occurrence was found.</returns>
- int IndexOfAny (char[] anyOf, int startIndex, int count);
-
- /// <summary>
- /// Gets the index of the first occurrence of the specified search text in this text source.
- /// </summary>
- /// <param name="searchText">The search text</param>
- /// <param name="startIndex">Start index of the area to search.</param>
- /// <param name="count">Length of the area to search.</param>
- /// <param name="comparisonType">String comparison to use.</param>
- /// <returns>The first index where the search term was found; or -1 if no occurrence was found.</returns>
- int IndexOf (string searchText, int startIndex, int count, StringComparison comparisonType);
-
- /// <summary>
- /// Gets the index of the last occurrence of the specified character in this text source.
- /// </summary>
- /// <param name="c">The search character</param>
- /// <param name="startIndex">Start index of the area to search.</param>
- /// <param name="count">Length of the area to search.</param>
- /// <returns>The last index where the search term was found; or -1 if no occurrence was found.</returns>
- /// <remarks>The search proceeds backwards from (startIndex+count) to startIndex.
- /// This is different than the meaning of the parameters on string.LastIndexOf!</remarks>
- int LastIndexOf (char c, int startIndex, int count);
-
- /// <summary>
- /// Gets the index of the last occurrence of the specified search text in this text source.
- /// </summary>
- /// <param name="searchText">The search text</param>
- /// <param name="startIndex">Start index of the area to search.</param>
- /// <param name="count">Length of the area to search.</param>
- /// <param name="comparisonType">String comparison to use.</param>
- /// <returns>The last index where the search term was found; or -1 if no occurrence was found.</returns>
- /// <remarks>The search proceeds backwards from (startIndex+count) to startIndex.
- /// This is different than the meaning of the parameters on string.LastIndexOf!</remarks>
- int LastIndexOf (string searchText, int startIndex, int count, StringComparison comparisonType);
- }
-}