public IndentationTrackerWrapper (Mono.TextEditor.TextEditorData textEditorData, IReadonlyTextDocument document, MonoDevelop.Ide.Editor.Extension.IndentationTracker indentationTracker)
		{
			if (textEditorData == null)
				throw new System.ArgumentNullException ("textEditorData");
			if (document == null)
				throw new System.ArgumentNullException ("document");
			if (indentationTracker == null)
				throw new System.ArgumentNullException ("indentationTracker");
			this.document = document;
			this.indentationTracker = indentationTracker;
		}
 public IndentationTrackerWrapper(Mono.TextEditor.TextEditorData textEditorData, IReadonlyTextDocument document, MonoDevelop.Ide.Editor.Extension.IndentationTracker indentationTracker)
 {
     if (textEditorData == null)
     {
         throw new System.ArgumentNullException("textEditorData");
     }
     if (document == null)
     {
         throw new System.ArgumentNullException("document");
     }
     if (indentationTracker == null)
     {
         throw new System.ArgumentNullException("indentationTracker");
     }
     this.document           = document;
     this.indentationTracker = indentationTracker;
 }