How to obtain the TableViewer from a Table

153 Views Asked by At

I created a TableViewer in JFace.
Later on I iterate through the UI-Tree and have only access to the SWT-API-Level objects.
In the case of the TableViewer it is the Table.
From the table, I need then a link to the TableViewer.

Does any one know how to do this?

2

There are 2 best solutions below

1
On

@Martti is right. Not possible directly via the viewer API.

For cases, where I need to get to the viewer from the control, I usually add viewer.getControl().setData(Viewer.class.getName(), viewer); - I can then later retrieve the viewer again with viewer.getControl().getData(Viewer.class.getName();

I prefer this method to keeping a separate Map<Control, Viewer>, as this is automatically cleaned up :-)

0
On

Not possible. Keeping a reference to created viewer is the only way.