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.google.code.t4eclipse.tools.dialog.MenuAnalyzerDialog.java

public class MenuAnalyzerDialog extends Dialog {

    public MenuAnalyzerDialog(Shell parentShell) {
        super(parentShell);
        setBlockOnOpen(false);
    }

From source file com.google.dart.tools.ui.feedback.FeedbackDialog.java

/**
 * A dialog to collect user feedback.
 */
public class FeedbackDialog extends Dialog implements IRunnableContext, DisposeListener {

    /**

From source file com.google.dart.tools.ui.feedback.FeedbackDialog2.java

public class FeedbackDialog2 extends Dialog {

    /**
     * Key used to retrieve stored settings from the activator's cache.
     */
    private static final String DIALOG_SETTING_CACHE_KEY = FeedbackDialog2.class.getName();

From source file com.google.devtools.depan.nodes.filters.eclipse.ui.widgets.FilterEditorDialog.java

/**
 * @author <a href="leeca@pnambic.com">Lee Carver</a>
 */
public abstract class FilterEditorDialog<T extends ContextualFilter> extends Dialog {

    private final T filter;

From source file com.google.devtools.depan.view_doc.layout.eclipse.ui.widgets.LayoutDialog.java

/**
 * @author <a href="leeca@pnambic.com">Lee Carver</a>
 */
public abstract class LayoutDialog<T extends LayoutPlan> extends Dialog {

    private final T layout;

From source file com.google.eclipse.mechanic.plugin.ui.BaseOutputDialog.java

/**
 * The dialog to obtain properties for outputting a task file.
 */
public abstract class BaseOutputDialog extends Dialog {

    enum Component {

From source file com.google.eclipse.protobuf.ui.preferences.pages.InputDialog.java

/**
 * Base class for dialogs that accept user input.
 *
 * @author alruiz@google.com (Alex Ruiz)
 */
public class InputDialog extends Dialog {

From source file com.google.gdt.eclipse.login.ui.LoginBrowser.java

/**
 * A dialog that has an embedded browser for the user to sign in.
 */
public class LoginBrowser extends Dialog {

    public static final int BROWSER_ERROR = -1;

From source file com.googlecode.hawk.ui.util.AddIndexerDialog.java

public class AddIndexerDialog extends Dialog {

    public AddIndexerDialog(Shell parentShell, HawkUIEclipseViewImpl view) {
        super(parentShell);
        this.view = view;
    }

From source file com.googlecode.hawk.ui.util.StartDialog.java

public class StartDialog extends Dialog {

    private HawkUIEclipseViewImpl view;
    private Text passwordField;

    public StartDialog(Shell parentShell, HawkUIEclipseViewImpl view) {