In eclipse e4.
On double clicking on a row in jface table I want to see the data on that row as a dialog.
Existing Code
orgTable.addDoubleClickListener(new IDoubleClickListener() {
@Override
public void doubleClick(DoubleClickEvent event) {
System.out.println("Double CLikc works");
}
});