I need to update status line editor-specific information. I already have my own implementation, but I would like to take a look how is eclipse contribution item, which shows line number/column position in status line is implemented. Can anyone point me, where could I find the source code?

Thanks in advance, AlexG.

link|improve this question

73% accept rate
feedback

2 Answers

In order to find out how something is implemented in Eclipse, you can also use the so called Plug-in spy. The Plug-in spy is included in the Plug-in Development Environmend (PDE). It is executed with ALT+SHIFT+F1. For further details look this Plug-in development FAQ.

link|improve this answer
Good suggeston!! – Naveen Babu Nov 10 '11 at 16:44
feedback

I'm not exactly sure what you are asking for, but there is a concrete implementation of IStatusLineManager here: org.eclipse.jface.action.StatusLineManager

Typically, if you want to access the status line and you have a handle for an editor, you can do something like this (borrowed from org.eclipse.jdt.internal.ui.javaeditor.AddImportOnSelectionAction:

private IStatusLineManager getStatusLineManager() {
    return fEditor.getEditorSite().getActionBars().getStatusLineManager();
}
link|improve this answer
Thanks for the answer, but I do know how to access the status line. What I was asking is an example of how line number is updated in status line, when I click on different lines in some editor. It probably uses some listener mechanism to update status line. – Alexander Gavrilov Nov 9 '11 at 9:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.