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

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Refactoring/MonoDevelop.CodeActions/CodeActionProvider.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:
27
27
using ICSharpCode.NRefactory;
28
28
using System.Threading;
29
29
using System.Collections.Generic;
 
30
using System;
30
31
 
31
32
namespace MonoDevelop.CodeActions
32
33
{
57
58
                public string Description { get; set; }
58
59
 
59
60
                /// <summary>
 
61
                /// Gets or sets the code issue all actions are bound to. 
 
62
                /// This allows to split the action and the issue provider.
 
63
                /// </summary>
 
64
                public Type BoundToIssue { get; set; }
 
65
 
 
66
                /// <summary>
60
67
                /// Gets the identifier string used as property ID tag.
61
68
                /// </summary>
62
69
                public virtual string IdString {
68
75
                /// <summary>
69
76
                /// Gets all the code actions in document at given location.
70
77
                /// </summary>
71
 
                public abstract IEnumerable<CodeAction> GetActions (MonoDevelop.Ide.Gui.Document document, TextLocation loc, CancellationToken cancellationToken);
 
78
                public abstract IEnumerable<CodeAction> GetActions (MonoDevelop.Ide.Gui.Document document, object refactoringContext, TextLocation loc, CancellationToken cancellationToken);
72
79
        }
73
80
}