Example usage for org.eclipse.jface.dialogs Dialog subclass-usage

List of usage examples for org.eclipse.jface.dialogs Dialog subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.dialogs Dialog subclass-usage.

Usage

From source file com.nextep.designer.ui.dialogs.ConnectionPasswordDialog.java

/**
 * @author Christophe Fondacci
 */
public class ConnectionPasswordDialog extends Dialog {

    private String label;

From source file com.nextep.designer.ui.dialogs.DialogGUIWrapper.java

public class DialogGUIWrapper extends Dialog {

    private IDisplayConnector gui;
    private String title;
    private IDialogValidator validator;
    private Object result;

From source file com.nextep.designer.vcs.ui.dialogs.FindElementDialog.java

/**
 * This dialog shows a list of elements provided by a {@link IContentProvider} in a filter dialog
 * allowing user to quickly filter and select an element.<br>
 * This dialog should generally not be used directly. Please use the {@link ICommonUIService}
 * methods instead.
 * 

From source file com.niceprograms.recipe.ui.LicenseDialog.java

public class LicenseDialog extends Dialog {

    public static final int ACCEPT = 1337;
    public static final int DECLINE = 1338;

    private Text licenseText;

From source file com.nokia.carbide.cdt.internal.builder.ui.AddEditEnvVarDialog.java

public class AddEditEnvVarDialog extends Dialog {
    protected static final String FIELD_NAME = "FIELD_NAME"; //$NON-NLS-1$
    protected static final int TEXT = 100;
    protected static final int BROWSE = 101;
    protected static final int VARIABLE = 102;

From source file com.nokia.carbide.cpp.uiq.components.addViewPageDialog.AddViewPageDialog.java

public class AddViewPageDialog extends org.eclipse.jface.dialogs.Dialog {

    private EObject instance;
    private CommandStack stack;
    private Button okButton;

From source file com.nokia.carbide.cpp.uiq.components.sbbCustomizer.SBBLayoutEditorDialog.java

public class SBBLayoutEditorDialog extends org.eclipse.jface.dialogs.Dialog {

    private SBBCustomizerComposite customizer;
    private EObject instance;
    private String value;
    private boolean inited;

From source file com.nokia.carbide.cpp.uiq.ui.vieweditor.ActionsLayoutsDialog.java

/**
 * This class creates the dialog for the Rename and Duplicate actions for the layouts.
 * It validates the input from the user and set the error messages in the dialog.
 * 
 */
public class ActionsLayoutsDialog extends Dialog {

From source file com.nokia.carbide.cpp.uiq.ui.vieweditor.ActionsUIConfigDialog.java

/**
 * This class creates the dialog for the actions Add and Duplicate for the UI configuration.
 * It validates the user's input and manages the errors.
 *
 */
public class ActionsUIConfigDialog extends Dialog {