Example usage for org.eclipse.jface.dialogs IDialogConstants NEXT_LABEL

List of usage examples for org.eclipse.jface.dialogs IDialogConstants NEXT_LABEL

Introduction

In this page you can find the example usage for org.eclipse.jface.dialogs IDialogConstants NEXT_LABEL.

Prototype

String NEXT_LABEL

To view the source code for org.eclipse.jface.dialogs IDialogConstants NEXT_LABEL.

Click Source Link

Document

The label for next buttons.

Usage

From source file:org.xmind.ui.internal.print.multipage.MultipageSetupDialog.java

License:Open Source License

protected Button createButton(Composite parent, int id, String label, boolean defaultButton) {
    if (id == IDialogConstants.OK_ID)
        label = IDialogConstants.NEXT_LABEL;
    return super.createButton(parent, id, label, defaultButton);
}