}
public void doubleClick(DoubleClickEvent event) {
final ISelection selection = event.getSelection();
if (selection instanceof IStructuredSelection) {
final Node node = (Node) ((IStructuredSelection) selection)
.getFirstElement();
fTreeViewer.setExpandedState(node,
!fTreeViewer.getExpandedState(node));
}
}