Resharper API for selected text and remote code generation

ⅰ亾dé卋堺 提交于 2019-12-12 13:55:30

问题


I'd like to write a Resharper plugin that lets me generate code in another class based on highlighted text, and the API isn't the most transparent. What methods should I look at to get access to selected text, and to code generation outside of the current class?


回答1:


When you are writing context action or something like this (read here http://confluence.jetbrains.net/display/ReSharper/ReSharper+7+Plugin+Development about actions and context actions), you receive an instance of IDataContext. Take a text control, document and selection from it in this way:

var textControl = context.GetData(TextControl.DataContext.DataConstants.TEXT_CONTROL);
var document = textControl.Document;
var solution = projectFile.GetSolution();
TextRange selection = textControl.Selection.OneDocRangeWithCaret();

Use document.GetText to get text for selection range.

In order to generate code outside of your current class, you need to find your other class declared element. For this you need to use IDeclarationsCache, see http://confluence.jetbrains.net/display/ReSharper/4.01+Caches+%28R7%29 about it. When you'd get declared element, use GetDeclarations() method to receive access to all of your class declarations (there can be several declarations because of partial classes) and cast it to IClassLikeDeclaration. Use AddClassMemberDeclaration method to add members and RemoveClassMemberDeclaration to remove. When adding class member, use element factory to create added element (see http://confluence.jetbrains.net/display/ReSharper/3.2+Creating+Code+Elements+%28R7%29).

Don't hesitate to contact me if you have further questions.



来源:https://stackoverflow.com/questions/11405690/resharper-api-for-selected-text-and-remote-code-generation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!