Hi!
I'm developing an Eclipse plug-in where upon pressing a button, the plug-in takes the selected text in the java editor and puts in a text box which appears.
My code looks like this: I got it from here: http://dev.eclipse.org/newslists/news.eclipse.newcomer/msg02200.html
private ITextSelection getSelection(ITextEditor editor) {
ISelection selection = editor.getSelectionProvider()
.getSelection();
return (ITextSelection) selection;
}
private String getSelectedText(ITextEditor editor) {
return getSelection(editor).getText();
}
The problem is how will I get the ITextEditor of the java editor being displayed. Coincidentally it's the next question in the thread in the link I posted but it's unanswered :(
Thanks and regards, Krt_Malta