Example usage for org.eclipse.jface.dialogs TrayDialog setHelpAvailable

List of usage examples for org.eclipse.jface.dialogs TrayDialog setHelpAvailable

Introduction

In this page you can find the example usage for org.eclipse.jface.dialogs TrayDialog setHelpAvailable.

Prototype

public void setHelpAvailable(boolean helpAvailable) 

Source Link

Document

Sets whether or not context help is available for this dialog.

Usage

From source file:org.caleydo.core.util.clusterer.gui.ClusterDialog.java

License:Open Source License

@Override
protected void configureShell(Shell newShell) {
    super.configureShell(newShell);

    newShell.setText(TEXT);/*ww  w  .  java  2s  .co m*/
    newShell.setImage(GeneralManager.get().getResourceLoader().getImage(newShell.getDisplay(), ICON));

    TrayDialog trayDialog = (TrayDialog) newShell.getData();
    trayDialog.setHelpAvailable(true);
}