I have a Nebula Grid (org.eclipse.nebula.widgets.grid.Grid) control in my view in Eclipse RCP. I would to make the row header of this grid visible so that, at runtime it displays row numbers like following photo:

Now, my requirement is that I want to display a text/char on the row header column, like other column headers (e.g. Full Name, Designation, etc). How can I achieve this on the Nebula Grid? Or, is it not possible by this Nebula Grid control? What could be my alternative?
I finally achieved the required functionality in nebulla Grid by implementing the method :
public void paint(GC paramGC, Object paramObject) {implementaion code }
inside interface :
setTopLeftRenderer(new IRenderer() { //interface methods}
as follows :
Where, grdTable is the Grid being used in the view.