| org.eclipse.ui.dialogs.SelectionDialog org.eclipse.ui.dialogs.ListSelectionDialog org.eclipse.ui.dialogs.YesNoCancelListSelectionDialog
YesNoCancelListSelectionDialog | public class YesNoCancelListSelectionDialog extends ListSelectionDialog (Code) | | YesNoCancelListSelectionDialog is a list selection dialog that also allows
the user to select no as a result.
|
Constructor Summary | |
public | YesNoCancelListSelectionDialog(org.eclipse.swt.widgets.Shell parentShell, Object input, org.eclipse.jface.viewers.IStructuredContentProvider contentProvider, org.eclipse.jface.viewers.ILabelProvider labelProvider, String message) Create a list selection dialog with a possible Yes/No or Cancel result. |
Method Summary | |
protected void | buttonPressed(int buttonId) | protected void | configureShell(Shell shell) | protected void | createButtonsForButtonBar(Composite parent) | protected void | noPressed() Notifies that the no button of this dialog has been pressed.
The Dialog implementation of this framework method sets
this dialog's return code to IDialogConstants.NO_ID and
closes the dialog. | protected void | yesPressed() Notifies that the yes button of this dialog has been pressed. |
YesNoCancelListSelectionDialog | public YesNoCancelListSelectionDialog(org.eclipse.swt.widgets.Shell parentShell, Object input, org.eclipse.jface.viewers.IStructuredContentProvider contentProvider, org.eclipse.jface.viewers.ILabelProvider labelProvider, String message)(Code) | | Create a list selection dialog with a possible Yes/No or Cancel result.
Parameters: parentShell - Parameters: input - Parameters: contentProvider - Parameters: labelProvider - Parameters: message - |
buttonPressed | protected void buttonPressed(int buttonId)(Code) | | |
configureShell | protected void configureShell(Shell shell)(Code) | | |
createButtonsForButtonBar | protected void createButtonsForButtonBar(Composite parent)(Code) | | |
noPressed | protected void noPressed()(Code) | | Notifies that the no button of this dialog has been pressed.
The Dialog implementation of this framework method sets
this dialog's return code to IDialogConstants.NO_ID and
closes the dialog. Subclasses may override if desired.
|
yesPressed | protected void yesPressed()(Code) | | Notifies that the yes button of this dialog has been pressed. Do the same
as an OK but set the return code to YES_ID instead.
|
Fields inherited from org.eclipse.ui.dialogs.ListSelectionDialog | CheckboxTableViewer listViewer(Code)(Java Doc)
|
|
|