Example usage for org.eclipse.jface.wizard WizardSelectionPage subclass-usage

List of usage examples for org.eclipse.jface.wizard WizardSelectionPage subclass-usage

Introduction

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

Usage

From source file com.atlassian.connector.eclipse.internal.crucible.ui.wizards.ReviewTypeSelectionPage.java

/**
 * Page for selecting which kind of review to create
 * 
 * @author Thomas Ehrnhoefer
 */
public class ReviewTypeSelectionPage extends WizardSelectionPage {

From source file com.ebmwebsourcing.petals.services.su.wizards.pages.ChoicePage.java

/**
 * Choose the kind of SU to create.
 * @author Vincent Zurczak - EBM WebSourcing
 */
public class ChoicePage extends WizardSelectionPage {

From source file com.embedthis.ejs.ide.wizards.EJScriptProjectLocationWizardPage.java

public class EJScriptProjectLocationWizardPage extends WizardSelectionPage {

    EJScriptProjectLocationWizardPage(String pageName) {
        super(pageName);
    }

From source file com.google.gdt.eclipse.gph.wizards.SelectHostedProjectWizardPage.java

/**
 * A wizard page to browse and select GPH projects.
 * 
 * @see ImportHostedProjectsWizard
 */
public class SelectHostedProjectWizardPage extends WizardSelectionPage implements IShellProvider {

From source file com.microsoft.tfs.client.common.ui.teambuild.wizards.CBCWizardSelectionPage.java

public class CBCWizardSelectionPage extends WizardSelectionPage {

    private boolean canFinishEarly = false;
    private TreeViewer wizardTree;
    protected final CreateBuildConfigurationWizardNode[] wizardDescriptors;

From source file com.nokia.carbide.internal.api.templatewizard.ui.ChooseTemplatePage.java

public class ChooseTemplatePage extends WizardSelectionPage {

    private static final String UID_KEY = ".uid"; //$NON-NLS-1$
    private static final String FOLDER_ICON = "icons/fldr_obj.gif"; //$NON-NLS-1$
    private List<ITemplate> templates;
    private Button filterCheckbox;

From source file com.nokia.cdt.internal.debug.launch.wizard.LaunchWizardSelectionPage.java

class LaunchWizardSelectionPage extends WizardSelectionPage
        implements ISelectionChangedListener, IStructuredContentProvider {

    private LaunchCreationWizard mainWizard;
    private FormBrowser descriptionBrowser;
    private TableViewer wizardSelectionTableViewer = null;

From source file com.siteview.mde.internal.ui.shared.target.AddBundleContainerSelectionPage.java

/**
 * Wizard page for selecting the type of bundle container to be added to a target
 * 
 * @see AddBundleContainerWizard
 * @see IBundleContainer
 */

From source file com.siteview.mde.internal.ui.wizards.BaseWizardSelectionPage.java

public abstract class BaseWizardSelectionPage extends WizardSelectionPage implements ISelectionChangedListener {
    private String label;
    private FormBrowser descriptionBrowser;

    public BaseWizardSelectionPage(String name, String label) {
        super(name);

From source file com.siteview.mde.internal.ui.wizards.target.TargetCreationPage.java

/**
 * First wizard page used to create a target definition. Defines the location where
 * the definition will be created and how to seed the definition.
 */
public class TargetCreationPage extends WizardSelectionPage {