如何更换的代码选定部分Eclipse编辑器(通过鼠标选择中选择),并使用相同的代码只在更换/* selected text */
通过插件? 我已经设计了一个插件来创建工具栏中的按钮。 当我点击它,我需要它来改变所选的文字,并把它放到/* */
。
Answer 1:
试试这个片段中,应该给你足够的提示,做你的工作:
try {
IEditorPart part = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor();
if ( part instanceof ITextEditor ) {
final ITextEditor editor = (ITextEditor)part;
IDocumentProvider prov = editor.getDocumentProvider();
IDocument doc = prov.getDocument( editor.getEditorInput() );
ISelection sel = editor.getSelectionProvider().getSelection();
if ( sel instanceof TextSelection ) {
final TextSelection textSel = (TextSelection)sel;
String newText = "/*" + textSel.getText() + "*/";
doc.replace( textSel.getOffset(), textSel.getLength(), newText );
}
}
} catch ( Exception ex ) {
ex.printStackTrace();
}
文章来源: Replace selected code from eclipse editor thru plugin command