~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/Mono.Texteditor/Mono.TextEditor/Standalone/ITextSource.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
17
17
// DEALINGS IN THE SOFTWARE.
18
18
#if STANDALONE
 
19
 
19
20
using System;
20
21
using System.Collections.Generic;
21
22
using System.IO;
95
96
                string GetText(ISegment segment);
96
97
                
97
98
                /// <summary>
 
99
                /// Writes the text from this document into the TextWriter.
 
100
                /// </summary>
 
101
                void WriteTextTo(TextWriter writer);
 
102
                
 
103
                /// <summary>
 
104
                /// Writes the text from this document into the TextWriter.
 
105
                /// </summary>
 
106
                void WriteTextTo(TextWriter writer, int offset, int length);
 
107
                
 
108
                /// <summary>
98
109
                /// Gets the index of the first occurrence of the character in the specified array.
99
110
                /// </summary>
100
111
                /// <param name="c">Character to search for</param>