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.contrastsecurity.ide.eclipse.ui.internal.views.MarkStatusDialog.java

public class MarkStatusDialog extends Dialog {

    private final static String TITLE_TEXT = "Mark as";
    private final static String[] STATUS_LIST = { StatusConstants.CONFIRMED, StatusConstants.SUSPICICIOUS,
            StatusConstants.NOT_A_PROBLEM, StatusConstants.REMEDIATED, StatusConstants.REPORTED,
            StatusConstants.FIXED };

From source file com.contrastsecurity.ide.eclipse.ui.internal.views.TagDialog.java

public class TagDialog extends Dialog {

    private ComboViewer tagsComboViewer;
    private Text createTagText;
    private TableViewer tableViewer;
    private TagsResource traceTagsResource;

From source file com.crispico.flower.mp.communication.dialog.TextDialog.java

public class TextDialog extends Dialog {

    /**
     * Our imposed height.
     */
    private final int HEIGHT = 500;

From source file com.elphel.vdt.ui.dialogs.DesignMenuSelectionDialog.java

public class DesignMenuSelectionDialog extends Dialog {

    private static final String NONE_ITEM = "None";
    private static final String NONE_ITEM_DESC = "No design menu for the project";

    private Combo comboDesignMenu;

From source file com.elphel.vdt.ui.dialogs.ListPromptDialog.java

/**
 * Dialog to promt list of strings. 
 * 
 * Created: 13.02.2006
 * @author  Lvov Konstantin
 */

From source file com.elphel.vdt.ui.dialogs.TextPromptDialog.java

public class TextPromptDialog extends Dialog {
    private Text text;
    private String typedString = null;

    public TextPromptDialog(Shell parent) {
        super(parent);

From source file com.elphel.vdt.ui.options.ContextOptionsDialog.java

public class ContextOptionsDialog extends Dialog {

    private String title;

    private final Context context;
    private IPreferenceStore store;

From source file com.embedthis.ejs.ide.dialogs.CompilerOptionsDialog.java

public class CompilerOptionsDialog extends Dialog {

    private EJScriptCompilerOptions compilerOption;

    private static final String DEBUG_TEXT = "Enable Debug";
    private static final String OPTIMIZE_TEXT = "Optimization Level";

From source file com.foglyn.ui.DateTimeDialog.java

public class DateTimeDialog extends Dialog {
    private DateTime date;
    private ListViewer time;

    // this is local hourMinute when workday start (computed from FogBugz value, or default)
    private int startOfWorkdayLocalHourMinute;

From source file com.foglyn.ui.WorkingOnCaseErrorDialog.java

public class WorkingOnCaseErrorDialog extends Dialog {

    private final String taskID;
    private final String repositoryURL;
    private final String repositoryLabel;