Example #1
0
 public DocumentationCommentCommandHandler(
     IWaitIndicator waitIndicator,
     ITextUndoHistoryRegistry undoHistoryRegistry,
     IEditorOperationsFactoryService editorOperationsFactoryService,
     IAsyncCompletionService completionService) :
     base(waitIndicator, undoHistoryRegistry, editorOperationsFactoryService, completionService)
 {
 }
Example #2
0
 internal override ICommandHandler CreateCommandHandler(
     IWaitIndicator waitIndicator,
     ITextUndoHistoryRegistry undoHistoryRegistry,
     IEditorOperationsFactoryService editorOperationsFactoryService,
     IAsyncCompletionService completionService)
 {
     return(new DocumentationCommentCommandHandler(waitIndicator, undoHistoryRegistry, editorOperationsFactoryService, completionService));
 }
        protected AbstractDocumentationCommentCommandHandler(
            IWaitIndicator waitIndicator,
            ITextUndoHistoryRegistry undoHistoryRegistry,
            IEditorOperationsFactoryService editorOperationsFactoryService,
            IAsyncCompletionService completionService)
        {
            Contract.ThrowIfNull(waitIndicator);
            Contract.ThrowIfNull(undoHistoryRegistry);
            Contract.ThrowIfNull(editorOperationsFactoryService);
            Contract.ThrowIfNull(completionService);

            _waitIndicator                  = waitIndicator;
            _undoHistoryRegistry            = undoHistoryRegistry;
            _editorOperationsFactoryService = editorOperationsFactoryService;
            _completionService              = completionService;
        }
Example #4
0
 public CompletionCommandHandler(IAsyncCompletionService completionService)
     : base(completionService)
 {
 }
 public InteractiveCompletionCommandHandler(IThreadingContext threadingContext, IAsyncCompletionService completionService)
     : base(threadingContext, completionService)
 {
 }
 public CompletionCommandHandler(IAsyncCompletionService completionService)
     : base(completionService)
 {
 }
Example #7
0
 public InteractiveCompletionCommandHandler(IAsyncCompletionService completionService)
     : base(completionService)
 {
 }
 internal abstract ICommandHandler CreateCommandHandler(IWaitIndicator waitIndicator, ITextUndoHistoryRegistry undoHistoryRegistry, IEditorOperationsFactoryService editorOperationsFactoryService, IAsyncCompletionService completionService);
 internal override ICommandHandler CreateCommandHandler(
     IWaitIndicator waitIndicator,
     ITextUndoHistoryRegistry undoHistoryRegistry,
     IEditorOperationsFactoryService editorOperationsFactoryService,
     IAsyncCompletionService completionService)
 {
     return new DocumentationCommentCommandHandler(waitIndicator, undoHistoryRegistry, editorOperationsFactoryService, completionService);
 }
 protected AbstractCompletionCommandHandler(IAsyncCompletionService completionService)
 {
     _completionService = completionService;
 }
 public InteractiveCompletionCommandHandler(IAsyncCompletionService completionService)
     : base(completionService)
 {
 }
 protected AbstractCompletionCommandHandler(IThreadingContext threadingContext, IAsyncCompletionService completionService)
     : base(threadingContext)
 {
     _completionService = completionService;
 }
 internal abstract ICommandHandler CreateCommandHandler(IWaitIndicator waitIndicator, ITextUndoHistoryRegistry undoHistoryRegistry, IEditorOperationsFactoryService editorOperationsFactoryService, IAsyncCompletionService completionService);